Blogger Information
Blog 12
fans 0
comment 2
visits 6209
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表单与盒模型
白鸽
Original
305 people have browsed it

表单与盒模型

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>表单与盒模型</title>
  8. <style>
  9. .bt input:hover{
  10. background-color:lightblue;
  11. }
  12. .bt input:focus{
  13. background:#FFF;
  14. }
  15. .box{
  16. margin: 50px;
  17. padding: 10px;
  18. border: 5px solid #F9f;
  19. width: 500px;
  20. height: 100px;
  21. background-color: #ffD;
  22. }
  23. #boxa{
  24. margin: 0;
  25. padding: 50px;
  26. border: 1px solid #f00;
  27. background-color: #f9e;
  28. }
  29. </style>
  30. </head>
  31. <body>
  32. <form class="bt" action="" method="post">
  33. <input type="text">
  34. <br>
  35. <input type="text">
  36. </form>
  37. <hr>
  38. <div class="box">我是一个大盒子</div>
  39. <div id="boxa">我是另外一个大盒子</div>
  40. </body>
  41. </html>
Correcting teacher:PHPzPHPz

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
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!