元素的显示与隐藏
类似网站广告,当我们点击关闭就不见了,但是我们重新刷新页面,会重新出现!
本质:让一个元素在页面中隐藏或者显示出来。
display 显示隐藏
visibility 显示隐藏
overflow 溢出显示隐藏
display 属性
display 属性用于设置一个元素应如何显示。
display : none ;隐藏对象
display : block ;除了转换为块级元素之外,同时还有显示元素的意思
display 隐藏元素后不再占有原来的位置。
后面应用极其广泛,搭配 JS 可以做很多的网页特效。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .demo1{ display: none; /*隐藏demo1,此时demo1不占位置*/ width: 100px; height:100px; background-color: pink; } .demo2{ width: 100px; height: 100px; background-color: skyblue; } </style> </head> <body> <div class="demo1"></div> <div class="demo2"></div> </body> </html>
visibility 可见性
visibility 属性用于指定一个元素应可见还是隐藏。
visibility : visible ;元素可视
visibility : hidden ;元素隐藏
visibility 隐藏元素后,继续占有原来的位置。
如果隐藏元素想要原来位置,就用 visibility : hidden
如果隐藏元素不想要原来位置,就用 display : none (用处更多(重点))
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .demo1{ visibility: hidden; /*隐藏demo1,此时demo1占位置*/ width: 100px; height:100px; background-color: pink; } .demo2{ width: 100px; height: 100px; background-color: skyblue; } </style> </head> <body> <div class="demo1"></div> <div class="demo2"></div> </body> </html>
一般情况下,我们都不想让溢出的内容显示出来因为溢出的部分会影响布局。
但是如果有定位的盒子,请慎用 overflow : hidden, 因为它会隐藏多余的部分。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> .demo1{ overflow: scroll; width: 100px; height:100px; background-color: pink; } </style> </head> <body> <div class="demo1"> 啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊啊 </div> </body> </html>