让元素还在页面里,但完全看不见的一般css设置

span[class~="sr-only"] { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: ...

让页面滚动更smooth

如果页面内有锚点,点击会直接跳到锚点处,加上下面这个css就会smooth滚动。{ scroll-behavior: smooth;}

项目符号隐藏

.answers-list { list-style: none; }

label和input框的对齐问题

<div class="info"> <label for="student-name">Name:</label> <input type=&...

做一个form的最佳实践

结构上,form下面应该分section,section应该用aria-labelledby属性和role属性section下面,使用h2做标题,添加id属性,跟aria-labelledby保持一致h2下面,每一个要填的内容,用di...