mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 09:05:45 +00:00
20 lines
303 B
HTML
20 lines
303 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#inline-block {
|
|
display: inline-block;
|
|
margin: 10px 0;
|
|
background-color: green;
|
|
}
|
|
#block {
|
|
margin: 10px 0;
|
|
background-color: lightgreen;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="inline-block"><span id="block">Hello Kitty</span></div>
|
|
</body>
|
|
</html>
|