这篇文章主要介绍了前端开发中经常遇到的CSS问题有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。一、关于input的问题1.input可
这篇文章主要介绍了前端开发中经常遇到的CSS问题有哪些,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
一、关于input的问题
1.input可编辑可下拉
<div>
<input type="text" list="itemlist" name="itemid" value="{$data.itemid}" >
<datalist id="itemlist">
<option>item1</option>
<option>item2</option>
</datalist>
</div>
2. input下拉
<select>
<option value="-1" >---请选择分辨率---</option>
<option value="0" >320 X 240</option>
</select>
3. input边线点击不显示
input点击边框样式无效
outline: none;
4. 提示文字:placeholder="手机号"
input修改提示文字颜色
::-WEBkit-input-placeholder {
color: #fff;
font-size:20px;
}
5. input出现背景是黄色
这种点击框也不会出现黄色了
input:-webkit-autofill { box-shadow: 0 0 0px 1000px white inset !important;}
还有一种就是关闭自动填充:autocomplete="off"
二、是否占位:显示/隐藏
1. display
display:none;
display: block;
2. visibility
visibility: hidden;
visibility: visible;
三、定位
1. 绝对定位:position:absolute
父级不自动增高,解决方法:overflow:auto;
2. 相对定位:position: relative;
3. 固定定位:position:fixed;
四、Textarea
1. div模拟textarea文本域轻松实现高度自适应
.testdisplay {
width: 100%;
min-height: 200px;
max-height: 400px;
margin-left: auto;
margin-right: auto;
outline: 0;
font-size: 12px;
line-height: 24px;
Word-wrap: break-word;
overflow-x: hidden;
overflow-y: auto;
}
五、手指光标
cursor: pointer;
六、文本省略号
1. 单行文本省略号
.digital-limit {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2. 多行文本省略号
.digital-nORMal {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}
七、滚动条修改样式
::-webkit-scrollbar {
width: 8px !important;
height: 8px !important;
}
::-webkit-scrollbar-thumb {
border-radius: 8px !important;
-webkit-box-shadow: inset 0 0 8px rgba(0,0,0,.1) !important;
background: rgba(0,0,0,.1) !important;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 8px rgba(0,0,0,0) !important;
border-radius: 10px !important;
background: rgba(0,0,0,0) !important;
}
八、透明度
1. 背景与字体透明
opacity:0.5;
2. 背景透明,字体不透明
background: rgba(216, 216, 216, .1.5);
九、img图片截图
.historys img{
width: 100%;
height: 100%;
position: absolute;
right: -5px;
clip: rect(0 103px 100px 0px);
}
通过js在图片刚刚开始加载的时刻可以获取其宽度和高度,然后用js决定限制图片的高度还是宽度。如何在图片开始加载时获取大小可以在这里找到。
Js:
$(function(){
$('.historys img').each(function(){
var $this=$(this);
imgReady($this.attr('src'),function(){
if(this.width>this.height){
$this.attr('height','100');
$this.removeAttr('width');
}
});
});
});
十、背景图
1. 尺寸等比扩展图片来填满元素,即cover值: background-size:cover;
2. 尺寸等比缩小图片来适应元素的尺寸,即contain值:background-size:contain;
3. 尺寸以图片自身大小来填充元素,即auto值: background-size:auto;
4. 图片模糊
使用filter()函数实现模糊背景,使用方法:
-webkit-filter: blur(5px);
filter: blur(5px);
5. 其他
不平铺:background-repeat: no-repeat;
横向平铺:background-repeat: repeat-x;
纵向平铺:background-repeat: repeat-y;
固定:background-attachment: fixed;
滚动:background-attachment: scroll;
水平居中:background-position: center;
水平居中并垂直居中:background-position: center center;
感谢你能够认真阅读完这篇文章,希望小编分享的“前端开发中经常遇到的css问题有哪些”这篇文章对大家有帮助,同时也希望大家多多支持编程网,关注编程网JavaScript频道,更多相关知识等着你来学习!
--结束END--
本文标题: 前端开发中经常遇到的css问题有哪些
本文链接: https://lsjlt.com/news/80668.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0