コードは次のとおりです。xx に Position:fixed を追加すると、スタイル内の xx が 1 行全体を占有するのから xxx を囲むだけになるのはなぜですか?
<!DOCTYPE html><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script src="http://libs.baidu.com/jquery/2.0.0/jquery.js" type="text/javascript"></script><style type="text/css">.xxx{height: 100px;width: 100px;background: red;}.xx{ background: black; padding: 10px; /*position: fixed;*/ left: 100px;}</style></head> <body><div class="xx"> <div class="xxx"> </div></div><script type="text/javascript"></script></body> </html>
Position:fixed はドキュメント フローから切り離されます
コンテンツは子要素によって拡張されます