en.javascript.info/8-css-for-js/17-css-sprite/sprite-tree-1/index.html
2015-03-07 19:26:10 +03:00

34 lines
496 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
.icon {
width: 16px;
height: 16px;
float: left;
outline: 1px dotted black;
background: url(https://js.cx/sprite-tree/icons.gif) no-repeat;
}
li {
list-style: none;
}
.text {
margin: 6px 0 6px 16px;
}
</style>
</head>
<body>
<ul>
<li class="closed">
<div class="icon"></div>
<div class="text">Пример раздела</div>
</li>
</ul>
</body>
</html>