次のサンプル コードがありますがdisplay:inline-block
、div 要素content
で宣言を使用しようとすると、その子孫または子が並べて配置されないことに気付きました。
p
要素を互いに隣接して表示する唯一の方法は、スタイルをp
セレクターに適用することです。display: inline-block
これは、子孫、子供、兄弟には使用できないということですか?
コード
<DOCTYPE public HTML "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset="UTF-8" />
<meta http=equiv="content-language" content="en-us" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta name="author" content="" />
<meta name="copyright" content="© 2012" />
<title>Inline-block</title>
<base href="" />
<link rel="stylesheet" href="" />
<style type="text/css" media="all">
p {
display: inline-block;
width: 100px;
}
</style>
</head>
<body>
<div id="content">
<p>paragraph 1</p>
<p>paragraph 2</p>
</div>
</body>
</html>