目标:能够说出定位 的常见应用场景,并且能够说出不同定位方式的特点
定位初体验
使用定位的步骤
场景:让子元素相对于父元素进行自由移动
含义:
子绝父相好处:父元素是相对定位,则对网页布局影响最小
子绝父绝特殊场景
子绝父相水平居中案例
需求:使用子绝父相,让子盒子在父盒子中水平居中(父子元素任意宽度下都能实现)
解决方法:
代码:
.father {
/* 父相 */
position: relative;
width: 200px;
height: 200px;
background-color: pink;
}
.son {
/* 子绝 */
position: absolute;
top: 0;
/* 先让子盒子往右移动父盒子的一半 */
left: 50%;
width: 75px;
height: 75px;
/* 再让子盒子往左移动自己的一半 */
transform: translateX(-50%);
background-color: blue;
}
子绝父相水平垂直都居中案例
.father {
/* 父相 */
position: relative;
width: 200px;
height: 200px;
background-color: pink;
}
.son {
/* 子绝 */
position: absolute;
/* 让子盒子往下走大盒子一半 */
top: 50%;
/* 让子盒子往右走大盒子一半 */
left: 50%;
width: 75px;
height: 75px;
/* 再让子盒子往左+往上走自己的一半 */
transform: translate(-50%, -50%);
background-color: blue;
}
目标:能够完成元素的装饰效果
认识基线(了解)
文字对齐问题
垂直对齐方式
项目中 vertical-align 可以解决的问题(拓展)
边框圆角的介绍
场景:让盒子四个角变得圆润,增加页面细节,提升用户体验
属性名 border-radius
属性值:数字 + px、百分比(border-radius: 水平方向取值 垂直方向取值;)
原理:
赋值规则:先从左上开始赋值,然后顺时针赋值,如果没有赋值的??看对角的!!!
边框圆角的常见应用
场景:让某元素本身在屏幕中不可见。如:鼠标:hover之后元素隐藏
常见属性:
区别:
注意点:
场景:在网页中展示出小三角形时,除了可以使用图片外,还可以使用代码完成
实现原理:利用盒子边框完成
实现步骤:
拓展:通过调整不同边框的宽度,可以调整三角形的形态
目标:能够使用伪类选择器选择元素的不同状态
场景:用于选中元素获取焦点时状态,常用于表单控件
选择器语法:
效果:表单控件获取焦点时默认会显示外部轮廓线
场景:通过元素上的HTML属性来选择元素,常用于选择 input 标签
选择器语法:
类选择器、属性选择器、伪类选择器、权重为10,标签选择器的权重是1
语法及实现:
button {
cursor: pointer;
}
/* 属性选择器的使用方法 */
/* 选择具有 disabled 属性的 button元素 */
button[disabled] {
cursor: default;
}
/* 选择具有 type 属性且属性值等于 search 的inout元素 */
input[type="search"] {
color: pink;
}
/* 匹配具有 class 属性,且值以 icon 开头的div元素 */
div[class^="icon"] {
color: red;
}
/* 匹配具有 class 属性、且值以 icon 结尾的div元素 */
div[class$="icon"] {
color: green;
}
/* 匹配具有 class 属性、且值含有 aico 的div元素 */
div[class*="aico"] {
color: skyblue;
}
<body>
<button>按钮</button>
<button>按钮</button>
<!-- disabled 是禁用我们的按钮 -->
<button disabled="disabled">按钮</button>
<button disabled="disabled">按钮</button>
<br />
<br />
<input type="text" name="" id="" value="文本框">
<input type="text" name="" id="" value="文本框">
<input type="text" name="" id="" value="文本框">
<br />
<br />
<input type="search" name="" id="" value="搜索框">
<input type="search" name="" id="" value="搜索框">
<input type="search" name="" id="" value="搜索框">
<br />
<br />
<div class="icon1">图标1</div>
<div class="icon2">图标2</div>
<div class="icon3">图标3</div>
<div class="aicon3">图标4</div>
<div class="absicon">图标5</div>
</body>
<!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>
/* 清除标签默认的margin和padding */
* {
margin: 0;
padding: 0;
}
body {
background-color: #f4f5f9;
}
.box {
position: relative;
/* 1、宽高 */
width: 228px;
height: 270px;
/* 2、背景颜色 */
background-color: #fff;
margin: 100px auto;
}
.box .product {
/* width: 228px; */
width: 100%;
}
.box h3 {
height: 52px;
padding-left: 24px;
padding-right: 20px;
margin-top: 25px;
font-size: 14px;
font-weight: 400;
}
.box p {
margin-left: 24px;
font-size: 12px;
color: #929292;
}
.box p span {
color: #f77321;
}
/* 设置hot定位 */
.hot {
position: absolute;
top: 4px;
right: -4px;
}
</style>
</head>
<body>
<!-- 布局流程:从上往下、从外往内 -->
<div class="box">
<img src="./images/hot.png" alt="" class="hot">
<img src="./images/product.png" alt="" class="product">
<h3>Android网络图片加载框架详解</h3>
<p><span>高级</span> ? 1125人在学习</p>
</div>
</body>
</html>
<!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>
.father {
width: 400px;
height: 400px;
background-color: pink;
}
.son {
width: 100px;
height: 100px;
background-color: blue;
/* 默认隐藏 */
display: none;
}
.father:hover .son {
/* hove到father后让son元素显示 */
display: block;
}
</style>
</head>
<body>
<div class="father">
<div class="son"></div>
</div>
</body>
</html>
<!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>
* {
margin: 0;
padding: 0;
}
.box {
position: relative;
width: 1226px;
height: 600px;
background: url('./images/bg.jpg');
margin: 0 auto;
}
.son {
/* 子绝父相 */
position: absolute;
left: 0;
bottom: 0;
/* 注意点:绝对定位的元素会脱标,脱标之后的元素宽高默认由内容撑开 */
width: 100%;
height: 200px;
background-color: rgba(0, 0, 0, .5);
}
.son:hover {
opacity: 0;
}
</style>
</head>
<body>
<div class="box">
<div class="son">我是内容我是内容我是内容</div>
</div>
</body>
</html>