【发布时间】:2014-03-11 09:31:18
【问题描述】:
我想在复选框中使用背景图片。我尝试了一些东西,但它不起作用。我正在尝试以下。
/* css */
.common_pic input[type=checkbox] {
background: url("images/checkbox.png") no-repeat scroll left top rgba(0, 0, 0, 0);
display: inline-block;
float: right;
height: 27px;
margin-left: 0;
margin-top: 29px;
width: 27px;
}
HTML
<div class="common_pic">
development
<input type="checkbox" name="vehicle" value="Car">
</div>
【问题讨论】:
标签: css