Home >Web Front-end >HTML Tutorial >css div absolute positioning_html/css_WEB-ITnose

css div absolute positioning_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:27:11946browse



z-index



第一个div

第二个div

第三个div

css样式:

@charset "utf-8"; /* CSS Document */

div {  width:200px; height:60px; position:absolute;  border:1px dashed #0000ff; }

#block1 {  left:20px; top:20px; z-index:1;  background-color:#99ccff; }

#block2 {  left:80px; top:40px; z-index:3;  background-color:#ffff66; }

#block3 {  left:60px; top:60px; z-index:-1;  background-color:#ff9900; }

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn