最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

有關(guān)cssleftrighttopbottom定位的介紹與實(shí)例展示

來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 18:50:54
文檔

有關(guān)cssleftrighttopbottom定位的介紹與實(shí)例展示

有關(guān)cssleftrighttopbottom定位的介紹與實(shí)例展示:這四個(gè)CSS屬性樣式用于定位對(duì)象盒子,必須定義position屬性值為absolute或者relative此取值方可生效。一、語(yǔ)法結(jié)構(gòu) Left、right、top、bottom后跟數(shù)字+html單位。示范結(jié)構(gòu)div{left:20px}div{right:20px}div{top:20px}div{bo
推薦度:
導(dǎo)讀有關(guān)cssleftrighttopbottom定位的介紹與實(shí)例展示:這四個(gè)CSS屬性樣式用于定位對(duì)象盒子,必須定義position屬性值為absolute或者relative此取值方可生效。一、語(yǔ)法結(jié)構(gòu) Left、right、top、bottom后跟數(shù)字+html單位。示范結(jié)構(gòu)div{left:20px}div{right:20px}div{top:20px}div{bo

這四個(gè)CSS屬性樣式用于定位對(duì)象盒子,必須定義position屬性值為absolute或者relative此取值方可生效。

一、語(yǔ)法結(jié)構(gòu)

Left、right、top、bottom后跟數(shù)字+html單位。

示范結(jié)構(gòu)

div{left:20px}

div{right:20px}

div{top:20px}

div{bottom:20px}

Left 靠左距離多少

Right 靠右邊距離多少

Top 距離頂部距離多少

Bottom距離下邊距離多少

二、使用條件

通常單獨(dú)使用left、right、top、bottom均無(wú)效,需要在使用絕對(duì)定位CSS position樣式才能生效。

一般left和right在一個(gè)樣式是只能使用其一,不能left和right都設(shè)置,要么使用left就不使用right,要么使用right就不使用left,如果left和right均使用將會(huì)出現(xiàn)兼容問(wèn)題,一個(gè)對(duì)象設(shè)置了靠左left多少距離,自然右邊距離自然就有了所以無(wú)需設(shè)置左邊。

相同道理,top和bottom對(duì)一個(gè)對(duì)象只能使用其一,不然會(huì)出現(xiàn)邏輯兼容問(wèn)題。譬如一個(gè)人讓你往左走,一個(gè)人讓你往右走,同時(shí)發(fā)出往左往右走這個(gè)時(shí)候你也不好判斷往那邊走。

三、絕對(duì)定位中使用

一般left、right、top、bottom使用于配合position定位對(duì)象位置。大家可以進(jìn)入CSS position教程篇了解學(xué)習(xí)這些樣式屬性。

實(shí)例:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html http://www.w3.org/1999/xhtml">http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>無(wú)標(biāo)題文檔</title> 
<script type="text/javascript" language="javascript"> 
function selA(id) { 
switch(id) { 
case "1": 
document.getElementById("subobj").style.position = "static"; 
break; 
case "2": 
document.getElementById("subobj").style.position = "absolute"; 
break; 
case "3": 
document.getElementById("subobj").style.position = "relative"; 
break; 
case "4": 
document.getElementById("subobj").style.position = "fixed"; 
break; 
} 
} 
</script> 
<style type="text/css"> 
#all { 
 width:190px; 
 height:95px; 
 padding:10px 0 0 10px; 
 border:1px #000 solid; 
 position:relative; 
} 
#subobj { 
 width:100px; 
 height:50px; 
 border:1px #000 solid; 
 bottom:9px; 
 position:static; 
} 
#sel { 
 margin-top:5px; 
} 
select { 
 width:200px; 
} 
</style> 
</head> 
<body> 
<div id="all"> 
<div id="subobj">子對(duì)象1</div> 
</div> 
<div id="sel"><select onchange="selA(this.value)"><option value="1">static</option><option value="2">absolute</option><option value="3">relative</option><option value="4">fixed</option></select></div> 
</body> 
</html>

聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

有關(guān)cssleftrighttopbottom定位的介紹與實(shí)例展示

有關(guān)cssleftrighttopbottom定位的介紹與實(shí)例展示:這四個(gè)CSS屬性樣式用于定位對(duì)象盒子,必須定義position屬性值為absolute或者relative此取值方可生效。一、語(yǔ)法結(jié)構(gòu) Left、right、top、bottom后跟數(shù)字+html單位。示范結(jié)構(gòu)div{left:20px}div{right:20px}div{top:20px}div{bo
推薦度:
標(biāo)簽: 定位 定位的 top
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top