使用边距设置跨距之间的距离

时间:2010-08-09 12:59:28

标签: css xhtml layout margin html

这是位于网页的两个跨度(在现实生活中很多跨度)。我想设定他们之间的距离。我想使用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>

2 个答案:

答案 0 :(得分:44)

span是一个内联元素,而不是块元素,它们不尊重(垂直)margin。您可以使用填充或制作范围display:inline-block;,然后使用边距。现在大多数新版浏览器都支持后者。

答案 1 :(得分:0)

我想说行高就是你要找的。