更改复选框html的指针

问题描述 投票:4回答:8

我是html和css的新手。目前我有一个复选框。请看下面的代码:

<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>

当我将鼠标悬停在复选框上时,我需要一个手形图标。我怎样才能实现这一目标?

html css html5 twitter-bootstrap css3
8个回答
4
投票

您使用pointer CSS样式将默认光标更改为指针手。

首先,在您的复选框中添加ID或类。

<input id="chkBike" type="checkbox" name="vehicle" value="Bike">I have a bike<br>

在CSS中,使用以下样式。

#chkBike{
  cursor: pointer;
}

7
投票

使用cursor:pointer你可以实现这一目标

input[type="checkbox"] {
    cursor: pointer;
}
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br>

2
投票
input[type="checkbox"] {
    cursor: pointer;
}

2
投票

你可以使用样式属性,如下面的代码

<input type="checkbox" name="vehicle" value="Bike" style="cursor:pointer"/>I have a bike<br>

我有一辆自行车


1
投票

试试这个:

input
{
  cursor:pointer
  }
<input type="checkbox" name="vehicle" value="Bike">I have a bike<br

1
投票

我想你想这样: -

label, input[type="checkbox"] {
    cursor: pointer;
}
<label><input type="checkbox" name="vehicle" value="Bike"> I have a bike</label>

0
投票

使用CSS cursor属性,参见here参考:

 input { cursor: pointer }

0
投票

将id设置为相应的输入

<input type="checkbox" name="vehicle" value="Bike" id="vehicleId">I have a bike<br>

并在悬停时如下所示应用样式css cursor: pointer

#vehicleId:hover{cursor:pointer};
© www.soinside.com 2019 - 2024. All rights reserved.