ホームページ  >  記事  >  ウェブフロントエンド  >  CSS の問題_html/css_WEB-ITnose

CSS の問題_html/css_WEB-ITnose

WBOY
WBOYオリジナル
2016-06-21 09:23:26792ブラウズ

<!DOCTYPE><html><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>html页面</title><style>*{padding: 0;margin: 0}#main{width:auto;height: auto;background-color: #ccc;position: relative;padding: 20px;}#left{position: absolute;width: 300px;height: 500px;background-color: blue;}#right{margin: 0 0 0 330px;background-color: yellow;}#footer{width: auto;height: 100px;background-color: orange;text-align: center;}</style></head><body><div id='main'>	<div id="left">左边</div>	<div id="right">右边</div></div><div id="footer">底部</div></body></html>

質問は: フッターを一番下に沈める方法です
私が達成したい効果は次のとおりです:
-----「右側」の高さと幅は適応性があり、ウィンドウが変わると自動的に変わります。


ディスカッションへの返信(解決策)


主に属性position:fixed

上の階のお兄さんのおかげで、別の方法で解決できました

<!DOCTYPE><html><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>html页面</title><style>*{padding: 0;margin: 0}#main{width:auto;height: auto;background-color: #ccc;padding: 20px;overflow: auto;}#left{float:left;width: 300px;height: 500px;background-color: blue;position: relative;}#right{background-color: yellow;margin-left: 330px;}#footer{width: auto;height: 100px;background-color: orange;text-align: center;clear:both;}</style></head><body><div id='main'>	<div id="left">左边</div>	<div id="right">右边</div></div><div id="footer">底部</div></body></html>

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。