1.
全部的/整个的/全体的:entire / whole
分段:section
部分的/段面的:sectional
平面:plane
個人資料/注冊信息:profile
尾部/附於其後:tail
扩張/展開:expand
折疊/合並:collapse
摘要:summary
修剪/整理:trim
裝飾/使生色:adorn
半徑:radius
圓/輪/球形:round
圓/循環/環繞:circle
角/棱/角落:corner
圓角/彎曲的角:CurvyCorners
==選項卡==============
tabs
tabNav / tabMenu
tabConWrap / tabConBg(經常需要在内容區上面加多一個元素,放背景)
tabCon1
tabCon2
tabCon3
tabCon4
====================
模 塊: mode
導 航: navigation
主導航: mainnav(globalnav)
子導航: subnav
整個頁面: container
頁 眉: header
頁 腳: footer
商 標: label
標 題: title
頂導航: topnav
邊導航: sidebar
左導航: leftsidebar
右導航: rightsidebar
旗 志: logo
標 語: banner
菜單內容1: menu1 content
菜單容量: menu container
子功菜單: submenu
邊導航圖標:sidebarIcon
描述: describe
註解: annotations
註解/筆記: note
提示訊息:msg
小技巧:tips
麵包屑: breadcrumb(即當前頁面導航提示)
路徑: path
外套/包裹: wrap
容器: container
內容: content
搜索: search
登入: Login
控製:controll
功能區/操作:operate
生效:enable
失效:disable
購物車:shopCar
標誌:logo
頁頭:header
工具條:toolbar
進度條:loginbar
側面/旁邊:side
側欄/工具欄:sidebar
廣告:banner
搜索:search
滾動:scroll
頁面主體:main
內容:content
文章列表:list
加入:joinus
指南:guild
服務:service
熱點:hot
新聞:news
下載:download
註冊:regsiter
狀態:status
按鈕:btn
投票:vote
流程圖:flowchart
預覧:preview
預覽圖:thumbvw(MS的thumbvw.dll文件名)
合作夥伴:partner
友情鏈結:friendlink
頁腳:footer
版權:copyright
提交:submit
文本框:textbox
統計:count
排名:Rank
賺:earn
class的命名①
(1)顏色:使用顏色的名稱或者16進制代碼,如
.fcRed{}
.bcRed{}
.red { color: red; }
.f-red{..}
.f-blue{..}
.f60 { color: #f60; }
.ff8600 { color: #ff8600; }
(2)字體大小,直接使用"font+字體大小"作為名稱,如
.font12px { font-size: 12px; }
.font9pt {font-size: 9pt; }
(3)對齊樣式,使用對齊目標的英文名稱,如
.left { float:left; }
.bottom { float:bottom; }
(4)標題欄樣式,使用"類別+功能"的方式命名,如
.barnews { }
.barproduct { }
(5)行高
.line-h{..}
2.樣式文件命名
reset.css
header.css // 頭部的所有樣式
container.css // 除頭部/底部外的中間區域樣式
footer.css // 底部樣式
print.css
ie.css
master.css 主要的
columns.css 專欄
font.css 文字
print.css 列印樣式
themes.css 主題
layout.css /* 整站佈局 */
public.css /* 公用組合樣式 */
master.css /*主要的*/
module.css /*模組*/
themes.css /*主題*/
columns.css /*專欄*/
header.css /* 頁面頭部區域樣式 */
sidebar.css /* 側邊欄區域樣式 */
main.css /* 主體區域樣式 */
footer.css /* 底部區域樣式 */
index.css /* 首頁區域特有樣式 */
form.css /* 表單類樣式 */
font.css /*文字*/
mend.css /*補丁*/
print.css /*打印*/
- 資料收集於網上,有些屬於表現的命名,語義不太好。我自己有時看到一些新的命名也會加進來,還有HTML5新的標記名稱和CSS3新的屬性名,可以多參考參考。