-3
1)width margin-rightを指定すると無効です(位置が「静的」のみ)。width margin-rightを指定するのが無効なのはなぜですか?
<style type="text/css">
body{
border:1px solid #808080;
width:500px;
height:500px;
}
div {
border: 1px solid #0094ff;
width: 200px;
/*margin-left:50px;*/ /* ok */
/*margin-top:50px;*/ /* ok */
margin-right: 50px; /* invalid,not working ?*/
margin-bottom: 50px; /* invalid,not working?*/
}
</style>
<body>
<div>test div</div>
</body>
2)なぜdivの幅を削除すると余白が有効になるのですか?
3)体の高さを取り除くと、マージンボトムが有効になるのはなぜですか?
マージン右とマージンボトムのルールを一致させるデフォルトレイアウトのこのCSSは何ですか?
私の平均は、divの位置は「フロート」プロパティを使用していない静的」とあるです。おかげさまで