html+css注意问题

文章描述:

html+css常见问题以及处理方法:

问题1:高度值一样,但是input略显高,怎么处理?

box-sizing: border-box;

问题2:怎么去掉textarea右下角图标?

resize: none;

问题3:移动端点击后 会出现”暗色”的背景?

a,button,input,optgroup,select,textarea{-webkit-tap-highlight-color: rgba(0,0,0,0);}

问题4:移动端IOS手机下清除输入框内阴影

input,textarea {-webkit-appearance: none;}

问题5:在IOS中禁止长按链接与图片弹出菜单

a,img{-webkit-touch-callout: none;}

 

发布时间:2021/07/26

发表评论