css
Joshua02
这个作者很懒,什么都没留下…
展开
-
PC网页、移动端适配,页面font-size动态变化
页面font-size动态变化,页面适配,字体大小适配原创 2022-07-15 11:06:30 · 4173 阅读 · 0 评论 -
css 带箭头的进度条
<ul class="stepsBox"> <template v-for="(item,index) in Object.values(stepsObj)"> <li :key="index" class="steps-btn3" :class="getCircleClass(item)" @click="switchStep(item)" &...原创 2021-05-17 15:06:18 · 451 阅读 · 0 评论 -
css 制作三角形
.tri_right{ width: 150px; height: 100px; border: 1px solid #000000; margin: 50px 50px; position: relative; float: left; } .tri_right:before{ content: ""; width: 0px; height: 0px; border-top: .原创 2021-04-15 15:06:39 · 268 阅读 · 0 评论 -
css 文字超出显示省略号
overflow: hidden; text-overflow: ellipsis; display: -webkit-box; /** 将对象作为伸缩盒子模型 **/ -webkit-box-orient: vertical; /** 设置或检索伸缩盒对象的子元素的排列方式 **/ -webkit-line-clamp: 1; /** 显示的行数 **/ ...原创 2018-04-23 16:57:22 · 205 阅读 · 0 评论 -
:after伪类制作1像素border
.bottom-left:after { position: absolute; /* width: 100%; */ height: 50%; left: 50%; bottom: 16px; display: block; border: 1px solid #eee; content: ' ';}原创 2018-05-29 10:06:29 · 3116 阅读 · 0 评论 -
Input的size与maxlength属性的区别
maxlength="5",则input输入框中只能够输入5个字符size="5",表示input输入框只显示5个可见的字符,但你可以输入'无数'多字符内容 ,输入框的宽度被固定了 可以用 CSS 中的width来代替使用size...原创 2018-09-18 11:42:10 · 2101 阅读 · 0 评论 -
自定义radio单选框
<input type="radio" name="isSponsor" class="activity-radio"><input type="radio" name="isSponsor" class="activity-radio">.activity-radio { width: 20px; heig转载 2018-09-26 14:58:21 · 547 阅读 · 0 评论