代码示例:(标识:cssref_default_label)
<!DOCTYPE html>
<html>
<head>
<style>
/* 默认的 CSS 值 */
label {
  cursor: default;
}
</style>
</head>
<body>

<p>默认情况下,label 元素会这样显示:</p>

<label for="yes">Yes</label>
<input type="radio" name="question" id="yes" value="yes"><br>
<label for="no">No</label>
<input type="radio" name="question" id="no" value="no"><br>

<p>自定义的 label 元素(更改 cursor):</p>

<label for="yes" style="cursor:wait;">Yes</label>
<input type="radio" name="question" id="yes" value="yes"><br>
<label for="no" style="cursor:wait;">No</label>
<input type="radio" name="question" id="no" value="no"><br>

</body>
</html>
运行结果: