iT邦幫忙

2023 iThome 鐵人賽

DAY 6
0
自我挑戰組

寫給自己看的前端學習筆記系列 第 6

寫給自己看的前端學習筆記 Day6

  • 分享至 

  • xImage
  •  

鐵人賽 Day 6

CSS Position

在 CSS 眾多屬性裡面相當重要的一個,一般來說在網頁上的資料都是順著資料流排列,而有了 position 屬性可設定定位點並藉由該定位點讓指定的元素移動到我們想要呈現的位子,而不限於跟著資料流排列這個選項。

Position 有五種值

  • Static
  • relative
  • absolute
  • fixed
  • sticky

Static (靜態定位)

在沒有指定 position 值的情況都是預設為 static ,靜態定位就是跟著資料流一起排列。

Relative (相對定位)

相對定位的參考點是該元素原本在資料流的位子,像是學生上課離開座位但是座位並不會因此消失只是人離開而已,因此如果設定 postion: relative
但是並沒有給予 top right left bottom 等值是跟靜態定位一樣的效果。

相對定位示範

<div id="one">1</div>
<div id="two">2</div>
<div id="three">3</div>


<style>
div{
  height: 20px;
}

#two{
  background-color: dodgerblue;
  position: relative;
  top: 40px;
}

#one,
#three
{
  background-color: grey;
}

</style>

靜態定位
https://ithelp.ithome.com.tw/upload/images/20230921/20127971Kay3ekqOSk.png


相對定位
https://ithelp.ithome.com.tw/upload/images/20230921/20127971OpV7HaOyeX.png

Absolute (絕對定位)

參考定位點為父層容器,在資料流上不會有位置而是自己獨立一層,也就是說會可能有被覆蓋或是覆蓋原本資料的狀況出現。

絕對定位示範

<div id="one">1</div>
<div id="two">2</div>
<div id="three">3</div>

<style>
div{
  height: 20px;
  width: 50px;
}
#two {
  width: 50px;
  background-color: dodgerblue;
  position: absolute;
  top: 40px;
  left: 40px;
}

#one,
#three
{
  background-color: grey;
}

</style>


https://ithelp.ithome.com.tw/upload/images/20230921/20127971koiRlFVKft.png

Fixed (固定定位)

跟絕對定位一樣是獨立一層,與絕對定位不同的是定位參考點是整個視窗,即使捲軸向下拉也一樣固定在視窗的同樣位子。


<div id="one">1</div>
<div id="two">2</div>
<div id="three">3</div>

<style>
div{
  height: 500px;
  width: 50px;
}
#two{
  width: 50px;
  background-color: dodgerblue;
  position: fixed;
  top: 40px;
  left: 40px;
}


#one,
#three
{
  background-color: grey;
}

</style>


固定定位範例
https://ithelp.ithome.com.tw/upload/images/20230921/20127971hzERCvyGB2.png

最後一個 sticky (黏貼定位) 就留到下一篇補齊...


上一篇
寫給自己看的前端學習筆記 Day5
下一篇
寫給自己看的前端學習筆記 Day7
系列文
寫給自己看的前端學習筆記18
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言