2014-01-19 86 views

回答

1

.checkbox{ 
-webkit-transform: scale(1.1); 
-moz-transform: scale(1.1); 
transform: scale(1.1); 
} 

或所有箱子

input[type="checkbox"] { 
    -webkit-transform: scale(1.1); 
    -moz-transform: scale(1.1); 
    transform: scale(1.1); 
    } 

只有一類scaleBox複選框

input[type="checkbox"].scaleBox { 
     -webkit-transform: scale(1.1); 
     -moz-transform: scale(1.1); 
     transform: scale(1.1); 
     } 

你的情況
enter image description here enter image description here

HTML:

<menu type=list> 
    <li><label>Current</label><input type=checkbox></li> 
    <li><label>My Goal</label><input type=checkbox class=scale></li> 
</menu> 

CSS:

input[type="checkbox"]{ 

} 
input[type="checkbox"].scale { 
    -webkit-transform: scale(4); 
    -moz-transform: scale(4); 
    transform: scale(4); 
} 

menu{ 
    width:400px; 
    margin:40px 0 0 0 ; 
} 

menu li{ 
    float:left; 
    width:50%; 
    list-style:none; 
} 

menu label{ 
    margin: 0 40px 0 0; 
    text-transform:uppercase; 
    font-weight:bolder; 
} 

更新演示:http://jsfiddle.net/kougiland/Fp9Dc/

跨瀏覽器Styled checkboxes由羅傑·約翰遜

+0

你能提供一個小提琴嗎? –

+0

檢查更新請 –

+0

我使用最新的鉻和所有四個複選框顯示相同。 –

0

只需使用這樣的:

.youcheckbox{ 
    -webkit-transform: scale(1.1); 
    -moz-transform: scale(1.1); 
    transform: scale(1.1); 
} 
+0

你能提供一個小提琴嗎? –

相關問題