运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <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> </html>