mirror of
https://github.com/servo/servo.git
synced 2025-06-18 05:14:28 +00:00
27 lines
655 B
HTML
27 lines
655 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0;
|
|
}
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
list-style-type: none;
|
|
list-style-image: none;
|
|
}
|
|
li {
|
|
display: inline-block;
|
|
padding: 0 100px;
|
|
color: red;
|
|
background-color: yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ul><li>X</li></ul>
|
|
</body>
|
|
</html>
|