mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
21 lines
350 B
HTML
21 lines
350 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Test for bug 1069941 -- margins</title>
|
||
|
<style type="text/css">
|
||
|
.outer {
|
||
|
display: inline-block;
|
||
|
border: 1px solid lime;
|
||
|
}
|
||
|
.inner {
|
||
|
color:transparent;
|
||
|
margin-left: 50px;
|
||
|
border: 2px solid teal;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<span class="outer"><span class="inner">(12]</span></span>
|
||
|
</body>
|
||
|
</html>
|