运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
转到 Spaces
<!DOCTYPE html> <html> <style> div { box-sizing: border-box; padding: 16px; width: 100%; background-color: red; color: #fff; font-size: 30px; } .closebtn { float: right; font-weight: bold; cursor: pointer; } .closebtn:hover { color: #000; } </style> <body> <div> <span onclick="this.parentNode.style.display='none';" class="closebtn">X</span> <p>click X to close.</p> </div> </body> </html>