我不能移動div內容。嘗試填充,保證金。可以用電話告訴我問題在哪裏? 這裏,示例代碼保證金,填充不工作在我的情況下
<!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" />
<style>
.line1
{
background-color:#AAAAAA;
height: 100%;
width: 1px;
display: inline-block;
}
.line2
{
background-color:#CE5611;
height: 100%;
width: 1px;
display: inline-block;
margin-left: 121px;
}
</style>
</HEAD>
<body>
<div id="a1" style='padding-left: 14px;width: 400px; height:148px'>
<span style='display: inline-block'>
<div>
<div>h1.1</div>
<div>h1.2</div>
<div>h1.3</div>
<div>h1.4</div>
<div>h1.5</div>
<div>h1.6</div>
<div>h1.7</div>
</div>
</span>
<span class="line1"></span>
<span style='display: inline-block'>
<div>h2.1</div>
<div>h2.2</div>
<div>h2.3</div>
<div>h2.4</div>
</span>
<span class="line2"></span>
<span style='display: inline-block'>
<div>h3.1</div>
<div>h3.2</div>
<div>h3.3</div>
<div>h3.4</div>
</span>
<span class="line1"></span>
</div>
</body>
</html>
什麼都的DIV?解釋我們進一步想要達到的內容 – Sotiris 2010-11-09 15:30:25
爲什麼要保持div跨度內,它應該是相反的,跨度用於divs之間提供內聯....文本或圖像等使用塊元素...做任何保證金,填充東西 – kobe 2010-11-09 15:34:33
不知道你想要什麼,但在你的代碼中有一些錯誤。根據您的Doctype 1)HEAD元素必須是小寫2)Div不能是一個跨度的孩子 – 2010-11-09 15:36:01