博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
less嵌套规则
阅读量:5316 次
发布时间:2019-06-14

本文共 1181 字,大约阅读时间需要 3 分钟。

嵌套,是less里面最有意思的小东西,比如说我们经常性的去写一些列表性的东西

 

html

 

less
/*一般这么写.list{}.list li{}.list a{}.list span{}*/.list{
  width:600px;  margin: 30px auto;  padding:0;  list-style: none;  li{    height: 30px;    line-height: 30px;    background-color: pink;    margin-bottom:5px;  }  a{
//不要写在li里面,尽量避免嵌套层级过深    float: left;  }  span{
    float: right;  }}=>/*一般这么写.list{}.list li{}.list a{}.list span{}*/.list {
  width: 600px;  margin: 30px auto;  padding: 0;  list-style: none;}.list li {
  height: 30px;  line-height: 30px;  background-color: pink;  margin-bottom: 5px;}.list a {
  float: left;}.list span {
  float: right;}

 

除了这个,它还提供一个更好玩的小东西,加hover的时候之前这样写
/**.list a{}.list a:hover{}*/.list{
  width:600px;  margin: 30px auto;  padding:0;  list-style: none;   a{    float: left;    //& 代表上了一层的选择器    &:hover{      color:red;    }  }}=>/**.list a{}.list a:hover{}*/.list {
  width: 600px;  margin: 30px auto;  padding: 0;  list-style: none;}.list a {
  float: left;}.list a:hover {
  color: red;}
用起来还是蛮方便的

 

转载于:https://www.cnblogs.com/wzndkj/p/9315837.html

你可能感兴趣的文章
ReactNative 触摸事件处理
查看>>
在 MongoDB 上模拟事务操作来实现支付
查看>>
2016 10 26考试 NOIP模拟赛 杂题
查看>>
C++迭代器
查看>>
web框架之Django(一)
查看>>
mysql optimization
查看>>
Leetcode#832. Flipping an Image(翻转图像)
查看>>
正则表达式学习手册
查看>>
点分治题表
查看>>
webpack常用配置
查看>>
ajax 页面无刷新
查看>>
perl学习笔记——目录操作
查看>>
好未来提前批
查看>>
LeetCode 581. 最短无序连续子数组(Shortest Unsorted Continuous Subarray)
查看>>
hihocoder 1689 - 推断大小关系(图论+二分)
查看>>
暑假个人小结
查看>>
VS2017生成一个简单的DLL文件 和 LIB文件——C语言
查看>>
Codeforces Round #410 (Div. 2) D. Mike and distribution 思维+数学
查看>>
数据库优化分层思想
查看>>
经典vim插件功能说明、安装方法和使用方法介绍(已更新)
查看>>