Я хочу сделать div, который является строкой. Вот мой HTML:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link href="clickable.css" type="text/css" rel="stylesheet" />
</head>
<body >
<div class="line"></div>
</body >
</html>
И вот мой CSS:
<style type="text/css">
.line{
width: 112px;
height: 47px;
border-bottom: 1px solid black;
position: absolute;
}
</style>
Ничего не отображается, что-то, вероятно, неверно в моем CSS, но я не вижу, что.