<html>
<head>
<style>
/* Default CSS Values */
label {
cursor: default;
}
</style>
</head>
<body>
<p>A label element is displayed like this:</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>A customized label element (changed 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>
<!-- Mirrored from www.w3schools.com/cssref/tryit.asp?filename=trycss_default_label by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:36:22 GMT -->
</html>