@webrunner26364@beta0695418781 when you use the float property on a CSS selector it is treated as an “inline-block” and thus there is no need to add display: inline-block to the #right element
In this link of the w3 schools I had better undestanding:
In the exemple you can see that the diference between the 3 are:
Inline: doent support width and height, but alow your element to sit side-by-side of the next element.
Block: support width and height values, but ad a to the next element.
Inline-block: support width and height but keep-it side-by-side, without breaking the line.
I think it’s because you have a display setting for both Box-Left and Box-Right.
You only need the display setting for the Box-Left and have the Box-Right floating.
So if you remove the display setting on Box-Right and replace it with “float:right”, it should work
Sorry for the late response. My thought process is along the line that “display: inline-block;” should appear next to each other in the parent container provided the width can accommodate both child or is there something I missed?
I can complete the exercise, but I need some clarification on the above.
So I see a couple people saying they got the same thing as me - I just copied what was in front of me and did Float:Left and achieved the same visual affect, is this going to operate differently or are float and inline-block interchangeable?