这是位于网页的两个跨度(在现实生活中很多跨度)。我想设定他们之间的距离。我想使用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>
答案 0 :(得分:44)
span
是一个内联元素,而不是块元素,它们不尊重(垂直)margin
。您可以使用填充或制作范围display:inline-block;
,然后使用边距。现在大多数新版浏览器都支持后者。
答案 1 :(得分:0)
我想说行高就是你要找的。