Blogger Information
Blog 35
fans 0
comment 0
visits 26678
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
固定广告案例
锋芒天下的博客
Original
584 people have browsed it

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <title>固定广告案例</title>
   <style>

        body{
           height: 3000px;
        }       

 #box1{
           width: 200px;
           height: 200px;
           background: #cccccc;
           position: fixed;
           right: 0;
           bottom: 0;
       }

   </style>
</head>
<body>

   <div id="box1">
       <button onclick="this.parentNode.style.display='none'">X</button>
       <h2>你好:欢迎来到这里</h2>
       <h1>大家好</h1>

   </div>

</body>
</html>

Correction status:qualified

Teacher's comments:还是老问题, 没有作业标题, 代码没放在代码块中, 请认真阅读要求
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments