Can we apply float property to inline element? if we could, is there any difference between a floated inline-box and a floated block-box, like this two elements:
<span style="float: left;">hello</span>
<span style="float: left; display: block;">hello</span>
thank you!