把图片路径改为这个就可以通过
http://img1.sycdn.imooc.com//52e22a1c0001406e03040221.jpg
http://img1.sycdn.imooc.com//52e22a1c0001406e03040221.jpg
2024-08-17
相对定位是相对于自身原有位置进行便宜,仍处于标准文档流中。局对定位脱离了文档流,偏移的参照基准是:有已定位的父元素以父元素为基准,无父元素(即无position)的话以<html>为基准。
2024-07-30
:nth-child(n) 是 CSS 伪类选择器之一,用于选择元素在其父元素中的位置。这个选择器允许你选择作为父元素的直接子元素的第 n 个元素。
:nth-child(n) 中的 n 是一个表示位置的关键词或者表达式。它可以是以下的一些值:
关键词:比如 odd(奇数)或者 even(偶数),选择对应的位置。
表达式:比如 2n(选择偶数位置)、2n+1(选择奇数位置)等,这些表达式可以匹配对应位置的元素。
:nth-child(n) 中的 n 是一个表示位置的关键词或者表达式。它可以是以下的一些值:
关键词:比如 odd(奇数)或者 even(偶数),选择对应的位置。
表达式:比如 2n(选择偶数位置)、2n+1(选择奇数位置)等,这些表达式可以匹配对应位置的元素。
2023-12-26
这样直接就是删除了首尾分割线的结果
.nav li+li:after
{
content: '';
position: absolute;
height:20px;
width: 1px;
top:0;
bottom:0;
left: 0;
margin: auto auto;
background: #999;
}
.nav li+li:after
{
content: '';
position: absolute;
height:20px;
width: 1px;
top:0;
bottom:0;
left: 0;
margin: auto auto;
background: #999;
}
2022-04-24
background-image:linear-gradient(to top left,red,orange,yellow);
2021-08-30
background-clip:padding-box 内填充区域 哦
content-box -> 内容区域
content-box -> 内容区域
2021-06-18
.wrapper span {
display:block;
-webkit-transform: skewX(-45deg);
-moz-transform: skewX(-45deg);
transform:skewX(-45deg);
}
这样改在这里是正确的的,但是在visual code上显示不出来
display:block;
-webkit-transform: skewX(-45deg);
-moz-transform: skewX(-45deg);
transform:skewX(-45deg);
}
这样改在这里是正确的的,但是在visual code上显示不出来
2021-04-27
/*使用伪元素制作导航列表项分隔线*/
.nav li:not(:first-child):before{ content: '';
position: absolute;
height:10px;
width: 1px;
top:0;
bottom:0;
left: 0;
margin: auto auto;
background: #999;
}
.nav li:not(:first-child):before{ content: '';
position: absolute;
height:10px;
width: 1px;
top:0;
bottom:0;
left: 0;
margin: auto auto;
background: #999;
}
2021-04-14
//使用伪元素制作导航列表项分隔线
.nav li:before{
content: '';
position: absolute;
height:10px;
width: 1px;
top:0;
bottom:0;
left: 0;
margin: auto auto;
background: #999;
}
//删除第一项和最后一项导航分隔线
.nav li:first-child:before{
content:none;
}
.nav li:before{
content: '';
position: absolute;
height:10px;
width: 1px;
top:0;
bottom:0;
left: 0;
margin: auto auto;
background: #999;
}
//删除第一项和最后一项导航分隔线
.nav li:first-child:before{
content:none;
}
2021-04-14