1. 程式人生 > >文章標題的樣式代碼

文章標題的樣式代碼

dff images 設置 調試 參考 kit ansi cnblogs 100%

主要參考:http://www.cnblogs.com/houkai/p/3394402.html



代碼插入到【管理】-->【設置】-->【博客設置】-->【頁面定制CSS代碼】中:

技術分享
.postTitle  {
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#eee), to(#aaa));
    background: -ms-linear-gradient(#eeeeee 0%,#aaaaaa 100%);
    background: -moz-linear-gradient(top, #eee, #aaa)
; font-size: 18px; margin-bottom: 3px; } #topics .postTitle { font-size: 110%; font-weight: bold; border-bottom: 1px dashed #ccc; float: right; line-height:2.5em;font-size: 18px; width: 100%; clear:both; } .postTitle a:link, .postTitle a:visited, .postTitle a:active
{ color: #390; transition:all 0.4s linear 0s } .postTitle a:hover { color: #F60; text-decoration: none;margin-left: 10px; }
View Code

首頁顯示效果:                      博客頁面顯示效果:

技術分享      技術分享

其中包含了動態效果。。。



總結:

  博客標題的樣式標簽為postTitle與postTitle2,但兩者之間關聯性太大,經過調試,感覺以上代碼顯示效果最好


文章標題的樣式代碼