它看起來像在更少,如果應用到的元素,你可以寫類似SCSS中可以混合使用嗎?
.input-block-level {
display: block;
width: 100%;
min-height: 30px; // Make inputs at least the height of their button counterpart
.box-sizing(border-box); // Makes inputs behave like true block-level elements
}
和input-block-level
可以用作無論是混入(帶括號),併爲一類。 scss中是否有類似的功能?
(從https://github.com/twitter/bootstrap/blob/master/less/mixins.less#L154採取例)
是否有你想要這種行爲的原因? – cimmanon
此行爲是引導框架的一部分,我想幫助將其移植到scss https://github.com/thomas-mcdonald/bootstrap-sass。 – sguha