twitterbootstrap が以前の他の css ファイルと競合しないように追加しようとしています。ありがとう
すべてを .tbwrap クラスでラップしたい。
twitterbootstrap が以前の他の css ファイルと競合しないように追加しようとしています。ありがとう
すべてを .tbwrap クラスでラップしたい。
使用する必要があるのはLESSです。
#header {
h1 {
font-size: 26px;
font-weight: bold;
}
p { font-size: 12px;
a { text-decoration: none;
&:hover { border-width: 1px }
}
}
}
/* コンパイルされた CSS */
#header h1 {
font-size: 26px;
font-weight: bold;
}
#header p {
font-size: 12px;
}
#header p a {
text-decoration: none;
}
#header p a:hover {
border-width: 1px;
}