1. ホーム
  2. html

[解決済み] divに線を引く

2022-03-11 21:26:21

質問

線になる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があります。

.line{
    width: 112px;
    height: 47px;
    border-bottom: 1px solid black;
    position: absolute;
    }
</style>

何も表示されません。おそらくCSSに問題があるのでしょうが、何が何だかわかりません。

どうすればいいですか?

私の場合、動作しています

 .line{
width: 112px;
height: 47px;
border-bottom: 1px solid black;
position: absolute;
}
<div class="line"></div>