mirror of
https://github.com/servo/servo
synced 2026-05-09 16:42:16 +02:00
the inline direction, subtract those from the inline size of preceding floats. Makes the content area on http://reddit.com/r/rust visible.
29 lines
333 B
HTML
29 lines
333 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#float {
|
|
float: right;
|
|
width: 150px;
|
|
}
|
|
|
|
section {
|
|
margin-right: 450px;
|
|
background: gold;
|
|
}
|
|
|
|
#a {
|
|
font-size: 48px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id=float></div>
|
|
<section>
|
|
<div id=a>set breakpoints from within the comfort of your editor</div>
|
|
</section>
|
|
</body>
|
|
</html>
|