123456789101112131415161718 |
- <!DOCTYPE html><style type="text/css">
- * {
- border: 1px solid black;
- }
- .float-left {
- float: left;
- font-size: 100px;
- }
- .d-inline-block {
- display: inline-block;
- width: 100px;
- background-color: sandybrown;
- }
- .Layout-sidebar {
- width: 220px;
- background-color: beige;
- }
- </style><div class="Layout-sidebar"><div class="d-inline-block">floats!!!!!!</div><div class="float-left">float left</div></div>
|