<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>blog頁面實例</title> <link rel="stylesheet" href="blog.css"> </head> <body> <!--左邊欄 開始--> <div class="left"> <!--頭像 開始--> <div class="header-img"> <img src="touxiang.png" alt=""> </div> <!--頭像 結束--> <!--用戶名 開始--> <div class="username"> 小強的狗窩 </div> <!--用戶名 結束--> <!--我的介紹 開始--> <div class="jieshao"> 這條狗很懶,什麼都沒有留下 </div> <!--我的介紹結束--> <!--三個連接 開始--> <div class="blog-links"> <ul> <li><a href="">關於我</a></li> <li><a href="">關於你</a></li> <li><a href="">關於他</a></li> </ul> </div> <!--三個連接 結束--> <!--文章分類 開始--> <div class="blog-tags"> <ul> <li><a href="">JS</a></li> <li><a href="">CS</a></li> <li><a href="">Python</a></li> </ul> </div> <!--文章分類 結束--> </div> <!--左邊欄 結束--> <!--右邊欄 開始--> <div class="right"> <div class="article-list"> <div class="article"> <div class="article-title"> <h1 class="article-name">海燕</h1> <span class="article-data">2018-10-23</span> </div> <div class="article-info">在蒼茫的的大海上,狂風捲積着烏雲,在烏雲和大海之間,海燕像黑色的閃電,在高傲的飛翔。。</div> <div class="article-tag"># Python</div> </div> </div> </div> <!--右邊欄 結束--> </body> </html>
/* Blog頁面相關樣式*/ /*公用樣式*/ * { font-family: ".PingFang SC", "Microsoft YaHei"; font-size: 14px; margin: 0; padding: 0; } /*去掉a標籤的下劃線*/ a { text-decoration: none; } /*左邊欄 樣式*/ .left { width: 20%; background-color: rgb(76,77,76); height: 100%; position: fixed; left: 0; top: 0; } /*頭像樣式*/ .header-img { height: 128px; width: 128px; border: 5px solid white; border-radius: 50%; overflow: hidden; margin: 0 auto; margin-top: 20px; } .header-img>img { max-width: 100%; } /*Blog 名稱*/ .blog-name { color: white; font-size: 24px; font-weight: bold; text-align: center; margin-top: 15px; } /*Blog介紹*/ .blog-info { color: white; text-align: center; border: 2px solid white; margin: 5px 15px; } /*鏈接組和標籤組*/ .blog-links, .blog-tags { text-align: center; margin-top: 20px; } .blog-links a, .blog-tags a { color: #eee; } .blog-tags a:before { content: "#"; } /*右邊欄 樣式*/ .right { width: 80%; background-color: rgb(238,237,237); height: 1000px; float: right; } .article-list { margin-left: 30px; margin-top: 30px; margin-right: 10%; } .article { background-color: white; margin-bottom: 15px; } .article-name { display: inline-block; } .article-title { padding: 15px; border-left: 3px solid red; } .article-info { padding: 15px; } .article-tag { padding: 15px 0; margin: 15px; border-top: 1px solid #eeeeee; } /*文章發佈時間*/ .article-date { float: right; }