3.19 排版 - 關於定位(position)
固定定位:fixed
<p>段落</p>
<p class="the_fixed">fixed 段落</p>
<p>段落</p>p.the_fixed{
border:1px solid red;
margin:0;
padding:0;
/* 改變定位模式(fixed) */
position: fixed;
right:0;
top:0;
}
相對定位:relative
絕對定位:absolute

sticky 定位模式
關於 z-index
練習
