css怎么做打勾的方框

html-css09

css怎么做打勾的方框,第1张

这个得用Html做的

<form action="" method="get">

您喜欢的水果?<br />

<label><input name="Fruit" type="checkbox" value="0" />苹果 </label>

<label><input name="Fruit" type="checkbox" value="1" />桃子 </label>

<label><input name="Fruit" type="checkbox" value="2" />香蕉 </label>

<label><input name="Fruit" type="checkbox" value="3" />梨 </label>

</form>

1、引用字体图标样式,用字体图标解决。

2、用背景图片解决。

3、用字符解决,就是

√    √  

没有代码那就只说思路,两个思路吧:

利用绝对定位把对号放在框的右下。

用背景图片写法,把对号当做框的背景图。

PS:比较推荐背景图片写法,点击事件更好控制。望采纳