Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-inline/text-box-trim/text-box-trim-float-clear-br-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>text-box-trim does not interfere with positive clearance</title>
<link rel="match" href="text-box-trim-float-clear-br-001-ref.html">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<meta charset="utf-8">
<style>
.spacer {
background: lightgray;
block-size: 100px;
}
.target, .float {
font: 50px/1 Ahem;
}
.target {
text-box-trim: trim-end;
text-box-edge: text;
}
.float {
float: left;
width: 100px;
background: yellow;
}
.clear { clear: both; }
</style>
<div class="float">F<br>F</div>
<div class="target">
█BxIF
<br class="clear">
</div>
<div class="spacer"></div>