| <style> |
| .container { |
| width: max-content; |
| color: green; |
| font-family: Ahem; |
| font-size: 50px; |
| } |
| .floater { |
| float: left; |
| width: 50px; |
| height: 50px; |
| background-color: blue; |
| } |
| .inline { |
| display: inline-block; |
| width: 50px; |
| height: 50px; |
| background-color: green; |
| } |
| img { |
| width: 50px; |
| height: 50px; |
| background-color: green; |
| } |
| </style> |
| <div class=container><div></div><div class=floater></div><div class=inline></div></div> |
| <div class=container><div></div><div class=floater></div><img></div> |
| <div class=container><div></div><div class=floater></div>X</div> |