关于多行文本框默认选中内容样式
有的项目页面是禁止选中文本的,但是输入框是个特例,需要单独设置样式,即选中内容时的背景颜色;
textarea { outline: none; background: transparent; outline: medium; } *:focus { outline: none; background-color: transparent; } ::selection { background: transparent; } ::-moz-selection { background: transparent; }
不过这只是改了样式,表面上选不中的假象,实际上还是可以选中内容的