共计 220 个字符,预计需要花费 1 分钟才能阅读完成。
鼠标样式 cursor
li {
cursor: not-allowed;
}
属性值 | 描述 |
---|---|
default | 小白(默认) |
pointer | 小手 |
move | 移动 |
text | 文本 |
not-allowed | 禁止 |
表单轮廓线 outline
给表单添加 outline: 0; 或者 outline: none; 样式之后就可以去掉默认的蓝色边框
input {
outline: none;
}
文本域防止拖拽 resize
实际开发中,我们文本域右下角是不可以被拖拽的
textarea {
resize: none;
}
正文完