web-dev-qa-db-ja.com

マージンを使用してスパン間の距離を設定します

これは、Webページにある2つのスパン(実際には多くのスパン)です。それらの間の距離を設定したいと思います。これにmargin-bottom属性を使用したいのですが、使用による影響が見られません。スパンはまだ前の位置にあります。それは間違いです。これが私のコードです:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title></title>
    <style type="text/css">
        .position, .name{
            overflow: hidden;
        }

        .position{
            margin-bottom: 40px;
        }
    </style>
</head>
<body>
    <span class="position">Designer</span><br/>
    <span class="name">John Smith</span>
</body>
</html>
18
andrii

spanはインライン要素であり、ブロック要素ではなく、(垂直)marginを尊重しません。パディングを使用するか、スパンをdisplay:inline-block;にしてから、マージンを使用できます。後者は現在、ほとんどのやや新しいブラウザでサポートされています。

44
Pascal

私はラインの高さがあなたが探しているものだと思います。

0
DonkeySticks