mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
27 lines
400 B
HTML
27 lines
400 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
#ib1 {
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
}
|
|
#ib2 {
|
|
display: inline-block;
|
|
margin-left: 10px;
|
|
margin-right: 20px;
|
|
}
|
|
#ib3 {
|
|
display: inline-block;
|
|
margin-left: 40px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span id="ib1">Hello<span id="ib2">my</span></span><span id="ib3">Kitty</span></div>
|
|
</body>
|
|
</html>
|