?HTML基礎(chǔ)05-定位布局 定位position 概念:是一種布局方式,主要用來(lái)確定元素的位置。 作用 解決是具有層級(jí)疊加(覆蓋)效果的布局。 實(shí)現(xiàn)方式 通過(guò)給元素添加position屬性,并且定位位置調(diào)整都是配合left, top, right, bottom四個(gè)屬性來(lái) 使用的。 position用來(lái)設(shè)置定位元素的參照物。 left, top, right, bottom用來(lái)設(shè)置定位元素相對(duì)于參照物橫向和縱向距離。 #mark{ ? ? width: 100px; ? ? height: 100px; ? ? background-color: salmon; ? ? //設(shè)置定位的參照物 ? ? position: relative; ? ? //設(shè)置元素相對(duì)于參照物的橫向和縱向距離 ? ? left: 100px; ? ? top: 50px; } position定位參照物的取值 relative 相對(duì)定位 特點(diǎn):