| <style> | |
| .content { | |
| width: 200px; | |
| border: 1px solid black; | |
| word-break: break-all; | |
| font-family: Monospace; | |
| font-size: 16px; | |
| } | |
| .before-float { | |
| float: right; | |
| width: 20px; | |
| height: 20px; | |
| background-color: green; | |
| } | |
| .after-float { | |
| float: left; | |
| width: 200px; | |
| background-color: green; | |
| height: 40px; | |
| } | |
| </style> | |
| <div class=content><div class=before-float></div><div class=after-float></div>PASSifthistextisfullyvisible</div> |