html - Align elements in a figure -
i've got problem hw. cant align 2 elements on left side https://jsfiddle.net/tkjxlfjy/ code , tried things float:left
didn't work... can me put meter , text under picture (the black sqare)?
according w3school:
elements after floating element flow around it. avoid this, use clear property.
add clear:both
div
. image
has float:left
next elements sit behind that.
figure div { clear: both; }
Comments
Post a Comment