首頁  >  文章  >  web前端  >  介紹html中定位fixed的實例程式碼

介紹html中定位fixed的實例程式碼

零下一度
零下一度原創
2017-04-28 14:52:341720瀏覽

這篇文章主要介紹了html中定位fixed實例程式碼,對於html教學有興趣的同學可以參考一下。

<html>
	<head>
		<title>123</title>
		<style>
			#sub1{
				width:50px;
				height:80px;
				border:1px solid #dcdcdc;
			}
			#sub2{
				position:fixed;
				top:250px;
				right:20px;
				width:50px;
				height:80px;
				border:1px solid #dcdcdc;
				margin-top:5px;
			}
			#sub3{
				width:250px;
				height:880px;
				border:1px solid #dcdcdc;
				margin-top:5px;
			}
		</style>
	</head>
	<body>
		<p id="parent">
			 <p id="sub1">sub1</p>
			 <p id="sub2">sub2</p>
			 <p id="sub3">sub1</p>
		</p>
	</body>
</html>

以上是介紹html中定位fixed的實例程式碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn