<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="css/style7.css"> <title>練習7-1 自定義盒子模式</title> </head> <body> <div class="container"> <div class="bd"> <div class="pd"> <div class="content"> 練習7-1 自定義盒子模式 </div> </div> </div> </div> </body> </html>
body{ margin: 0; } .container{ width: 500px; height: 200px; background-color: #1E0CB9; padding: 20px; } .bd{ border: solid 20px #D82323; background-color: #15DF27; } .pd{ background-color: #EFE41B; padding: 20px; } .content{ background-color: #fff; height: 100px; padding: 10px; }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <link rel="stylesheet" type="text/css" href="css/style7-2.css"> <title>7-2.html</title> </head> <body> <div class="head"> <div class="nav"></div> </div> <div class="body"> <div class="slider"> </div> <div class="content"> </div> <div class="footer"> <div class="footer-content"></div> <div class="footer-nav"></div> </div> </div> </body> </html>style7-2.css
*{ margin: 0; padding: 0; } .head{ height: 50px; background-color: #000; } .nav{ width: 75%; height: 50px; margin: 0 auto; background-color: #0000FF; } .body{ /*background-color: #82EED9;*/ } .slider{ width: 75%; margin: 0 auto; height: 300px; background-color: #FFFF00; }