Welcome 🎉

logo

ReactLMS

Search
Light Mode
Contact Us

2 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Khái niệm


z-index là một thuộc tính trong CSS dùng để thay đổi độ ưu tiên hiển thị của đối tượng trên màn hình.

🌱
Tag khi ở dạng absolute, ta có thể sử dụng các thuộc tính CSS như top, bottom, left, right để có thể di chuyển tag theo ý muốn trong vùng lệ thuộc.


Cách sử dụng


ví dụ

HTML

<div class='result'>
  <span class='box1'>1</span>
  <span class='box2'>2</span>
</div>







CSS

.result {
  position : relative;
  height: 200px;
  background: lightcoral !important;
}

.result .box1 {
  background: pink;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 30px;
  top: 30px;
  z-index: 1;
}

.result .box2 {
  background: red;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 40px;
  top: 40px;
  z-index: 2;
}







Kết quả

1 2




Read More
On This Page