首页 前端知识 css边距的接触

css边距的接触

2024-06-21 09:06:39 前端知识 前端哥 746 299 我要收藏
一、鼠标悬停 :鼠标选停到上时,设置样式  名:hover{  样式:样式值   }   例如:
<!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>
span{
color:red;
}
span:hover{
color:blue;
text-decoration: underline;
}
a{
padding-right:20px;
color:blue;
}
a:hover{
color:green;
text-decoration: none;
}
</style>
复制
二、内边距:  padding
  
<!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>
div {
width: 500px;
height: 500px;
}
div {
border: 1px solid red;
复制

   4个边    padding: 0px;      上下   左右   padding: 0px  20px;    上  左右  下 padding: 0px  20px 30px;   上 右 下 左    padding: 0px 20px 30px 40px;

三、外边距: margin
注意:元素的下边距和另一个元素的上边距会合并 外边距 margin
可以让元素左右居中 例如:margin:0px auto; (auto 自动)
margin-top:10px; margin-bottom:10px; margin-left:10px; margin-right:10px;
复制

平移这个元素位置的一半 :transform: translate(-50%,0px);      左右       上下居中   

转载请注明出处或者链接地址:https://www.qianduange.cn//article/13139.html
标签
评论
还可以输入200
共0条数据,当前/页
发布的文章

JQuery中的load()、$

2024-05-10 08:05:15

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!