mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
24 lines
498 B
HTML
24 lines
498 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
.right {
|
|
text-align: right;
|
|
}
|
|
.left {
|
|
text-align: left;
|
|
}
|
|
.inline {
|
|
display: inline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="right">
|
|
<span class="left"> <!-- should ignore 'text-align' of inline elements -->
|
|
<div class="inline left"> <!-- ... and those explicitly defined as inline -->
|
|
<span>hello, wide world</span>
|
|
</span>
|
|
</span>
|
|
</div>
|
|
</body>
|
|
</html>
|