css-notes


css 备忘

学习途径

UI设计稿全自动切图和标注的工具推荐

! ps 有钱买个mac

ps插件

cutterman

常用语法

选择器

伪类选择器

a:link
a:visited
a:hover
a:active
//其他标签也可以用
p:hover
//获取焦点
input:focus
//被选择
p::selection

伪元素

p:first-letter
p:first-line

//before 结合content使用
//紧随p标签后面的位置
p:before {
  content:"出现在段落最前面"
}

p:after{
  content:"出现在段落最前面"
}

常见技巧

not

ul li:not(li:last-child){
  color:red;
}

img

/* 将一个方形图片 显示成圆形 */
border-radius:50%
<!-- 如果圆形图片显示有偏移则需要将图片放入div中给div加overflow -->
<div class="circular--landscape">
  <img src="xxx.jpg"/>
</div>
.circular--landscape{
    display:inline-block;
    position:relative;
    width:200px;
    height:200px;
    overflow:hidden;
    border-radius:50%;
}

.circular--landscape img{
    width:auto;
    height:100%;
    margin-left:-50px;
}

文章作者: losss
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 losss !
评论
  目录