我一直在为custom.css网站添加大量额外的CSS,样式表最终有点混乱。
我决定将自定义样式表(custom.css)分解为网站的各个部分,以便使用/ * ---和每个CSS块的大写保持清晰。
已添加评论,但不会立即显示该样式更改中发生的情况。
最后,@media查询已添加到每个时钟部分的底部(而不是底部的长列表)
是否应该如何格式化样式表的行业标准,以上是否会产生任何问题?请记住,还有一个未触及的stylesheet.css。
以下是我所做的一个小例子:
/*------------------------------------
MAIN CONTENT
------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
body {
font-family: "Open Sans";
font-weight: 400;
font-style: normal;
font-size: 13px;
color:#000;
}
h1 {
font-size: 22px;
}
a {
color: #333;
}
/* Move * on account page */
.form-horizontal .has-feedback .form-control-feedback {
padding-top: 10px;
}
/* Sort line gaps in category box */
#columnLeft > .panel > .panel-body .nav > li > a {
padding: 1px 15px;
}
/* Widen side column when they appear to thin */
@media (min-width: 992px) and (max-width: 1265px) {
.col-md-pull-8 {
right: 60%;
}
.col-md-push-2 {
left: 20%;
}
.col-md-2 {
width: 20%;
}
.col-md-8 {
width: 60%;
}
}
/*------------------------------------
PRODUCT PAGE
------------------------------------*/
.page-header > h1 > a > span {
color:#000;
}
.page-header > h1 > small > span {
color:#000;
}
/* Remove filter by on Category and Distributors Page */
#bodyContent > .contentContainer > div > div.well.well-sm {
display:none;
}
.productlogo {
width: 90px !important;
}
/*------------------------------------
NAV MENUS
------------------------------------*/
i.fa.fa-chevron-down {
float: none;
}
i.fa.fa-bars {
float: left;
position: relative;
top: 7px;
}
/* Set mobile select button */
.navbar-default .navbar-toggle {
background-color: #333 !important;
color: white;
}
/* Enlarge side columns */
@media (min-width: 768px) and (max-width: 991px) {
#bs-navbar-collapse {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
-ms-flex-pack: distribute;
justify-content: space-around;
}
}
@media (min-width:992px) {
/* Show category menu to 992px width */
#catMenu {
display: none;
}
}
/*------------------------------------
ACCOUNT HEADER BUTTONS
------------------------------------*/
#headerShortcuts {
margin-top: 10px;
}
.accountLinkList > li {
padding-left: 15px;
}
/* Slightly smaller cart buttons in top right of page */
@media (min-width:768px) and (max-width:1065px) {
#headerShortcuts {
width: 39%;
margin-bottom: 10px;
margin-top: 12px;
padding: 0;
}
}
/* Change font size and padding on cart buttons */
@media (max-width:425px) {
#headerShortcuts > .btn-group >.btn {
padding: 3px 2px;
font-size: 11px;
}
}
/*------------------------------------
OFFERS PROMO BOX
------------------------------------*/
/* Home Page Offers */
.offerscontainer {
margin:0 auto;
width:610px;
height:320px;
}
.offeroftheday {
float: left;
}
.freeshipping {
float: right;
}
.24hrdelivery {
float: left;
clear: left;
padding-top:15px;
}
@media (max-width: 770px) {
.offerscontainer {
width:100%;
margin: 0 auto;
height:auto;
}
.offeroftheday{
float: right;
display:none;
}
.freeshipping{
float: none;
}
.24hrdelivery {
float: none;
clear:both;
}
}
答案 0 :(得分:0)
我认为没有任何行业标准,因此您需要如何格式化样式表。
我通常做的如下
调用最重要的导入(尽管我尽量避免在css上调用导入)
然后添加我的所有通用样式
然后为评论块明确提及的每个页面/部分添加所有自定义样式
然后我有我的帮助班
然后添加我的媒体查询(有时我在单独的css文件上也有媒体查询)
要记住的事情
尽量不要重复,尝试尽可能重用样式规则
避免使用下划线,因为旧浏览器存在问题
使用w3c验证程序验证以确保您正在进行中
如果您习惯使用Sass或Less,请尝试使用它,因为它可以启用嵌套并提高代码可读性
希望有所帮助!