2.1 CSS三角
网页中常见的一些三角形, 使用CSS直接画出来就可以, 不必做成图片或者字体图标。
CSS三角做法代码:
div {
width: 0;
height: 0;
/* 兼顾兼容性
line-height: 0;
font-size: 0; */
border: 50px solid transparent;
border-left-color: pink;
}
2.2 CSS三角强化
语法:
width: 0;
height: 0;
/* 1.只保留右边的边框有颜色 */
border-color: transparent skyblue transparent transparent;
/* 2.样式都是solid */
border-style: solid;
/* 3.上边框宽度要大,右边框宽度稍小,其余边框为0 */
border-width: 100px 50px 0 0;
【示例代码】
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.prc {
width: 160px;
height: 24px;
border: 1px solid red;
margin: 0 auto;
line-height: 24px;
}
.miaosha {
position: relative;
float: left;
width: 90px;
height: 100%;
background-color: red;
text-align: center;
color: #fff;
font-weight: 700;
margin-right: 8px;
}
.miaosha i {
position: absolute;
right: 0;
top: 0;
width: 0;
height: 0;
border-color: transparent #fff transparent transparent;
border-style: solid;
border-width: 24px 10px 0 0;
}
.de {
font-size: 12px;
color: gray;
text-decoration: line-through;
}
</style>
</head>
<body>
<div class="prc">
<span class="miaosha">
¥1650
<i></i>
</span>
<span class="de">¥5650</span>
</div>
</body>
</html>
2.3 什么是界面样式
所谓的界面样式,就是更改一些用户操作样式,以便提高更好的用户体验。
●更改用户的鼠标样式
●表单轮廓
●防止表单域拖拽
2.4 鼠标样式cursor
li {cursor: pointer; }
设置或检索在对象上移动的鼠标指针采用何种系统预定义的光标形状。
2.5 轮廓线outline
给表单添加 outline:0; 或者 outline: none; 样式之后, 就可以去掉默认的蓝色边框。文章来源:https://www.toymoban.com/news/detail-684887.html
input { outline: none; }
2.6 防止拖拽文本域resize
实际开发中,我们文本域右下角是不可以拖拽的。文章来源地址https://www.toymoban.com/news/detail-684887.html
textarea{ resize: none; }
到了这里,关于2. CSS三角、CSS用户界面样式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!