<li>的高度不同

时间:2015-11-05 12:45:37

标签: html css

目标:
使文本“bbb”具有与“aaa”相同的字体高度,但li.ttt的高度应与font-size具有相同的高度:xx-large;

问题:
不知道怎么做。我尝试使用“高度”,但它不起作用。

https://jsfiddle.net/qc89dwz7/

LI.filtered A {
  position: relative;
  padding: 1px 20px 1px 4px;
  background: #F0F0FF url(https://cdn3.iconfinder.com/data/icons/luchesa-vol-9/128/Lollipop-16.png) no-repeat scroll right 0;
  background-position: right bottom;
  font-weight: 400;
  color: #08C;
  text-decoration: none;
}
LI.filtered .testt {
  background: #F0F0FF;
  padding: 1px 4px 1px 4px;
  font-weight: 400;
  color: #08C;
  text-decoration: none;
}
#result-filters {
  margin: 0, 0, -30px;
}
#result-filters UL {
  display: inline;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: arial, helvetica, sans-serif;
}
LI.filtered,
#result-filters LI.filtered {
  padding-left: 0;
  background: transparent none repeat scroll 0 0;
}
#result-filters UL LI {
  margin: 0 8px 0 0;
  float: left;
}
LI.ttt A {
  position: relative;
  padding: 1px 4px 1px 20px;
  background: #F0F0FF url(https://cdn3.iconfinder.com/data/icons/luchesa-vol-9/128/Lollipop-16.png) no-repeat scroll left 0;
  background-position: left;
  font-weight: 400;
  color: #08C;
  text-decoration: none;
  font-size: xx-large;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #F4F4F4;
  min-height: 61px;
  border: 0;
  line-height: 1.2;
  letter-spacing: 1px;
  width: 137px;
  text-align: center;
  font-family: Tahoma;
}
<div id="result-filters">
  <ul>

    <li class="filtered">
      <a href="">
		aaa
		</a>
    </li>
    <li class="ttt">
      <a href="">bbb</a>
    </li>
  </ul>
</div>

1 个答案:

答案 0 :(得分:0)

xx-large转换为32px

知道这一点,你可以分别建立两个列表项的高度和行高:

li.filtered {
    height: 12px;
    line-height: 12px;
    }

li.ttt {
    height: 32px;
    line-height: 32px;
    }

然后,您可以将 aaa bbb 的字体大小设置为12px

li.filtered a,
li.ttt a {
    font-size: 12px;
    }

全部放在一起:

&#13;
&#13;
LI.filtered A {
  position: relative;
  padding: 1px 20px 1px 4px;
  background: #F0F0FF url(https://cdn3.iconfinder.com/data/icons/luchesa-vol-9/128/Lollipop-16.png) no-repeat scroll right 0;
  background-position: right bottom;
  font-weight: 400;
  color: #08C;
  text-decoration: none;
}
LI.filtered .testt {
  background: #F0F0FF;
  padding: 1px 4px 1px 4px;
  font-weight: 400;
  color: #08C;
  text-decoration: none;
}
#result-filters {
  margin: 0, 0, -30px;
}
#result-filters UL {
  display: inline;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-family: arial, helvetica, sans-serif;
}
LI.filtered,
#result-filters LI.filtered {
  padding-left: 0;
  background: transparent none repeat scroll 0 0;
}
#result-filters UL LI {
  margin: 0 8px 0 0;
  float: left;
}
LI.ttt A {
  position: relative;
  padding: 1px 4px 1px 20px;
  background: #F0F0FF url(https://cdn3.iconfinder.com/data/icons/luchesa-vol-9/128/Lollipop-16.png) no-repeat scroll left 0;
  background-position: left;
  font-weight: 400;
  color: #08C;
  text-decoration: none;
  font-size: xx-large;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  background-color: #F4F4F4;
  min-height: 61px;
  border: 0;
  line-height: 1.2;
  letter-spacing: 1px;
  width: 137px;
  text-align: center;
  font-family: Tahoma;
}

li.filtered,
li.ttt {
    display:block;
    background-color: rgba(244,244,244,1);
    }

li.filtered {
    height: 12px;
    line-height: 12px;
    margin: 10px;
    }

#result-filters li.filtered {
    margin-top: 10px;
    }
        
li.ttt {
    height: 32px;
    line-height: 32px;
    }

li.filtered a,
li.ttt a {
    font-size: 12px;
    }
&#13;
<div id="result-filters">
  <ul>

    <li class="filtered">
      <a href="">
		aaa
		</a>
    </li>
    <li class="ttt">
      <a href="">bbb</a>
    </li>
  </ul>
</div>
&#13;
&#13;
&#13;

=====

简单颜色背景的简单替代方案

如果您想在纯色背景上中间对齐两个相同字体大小的列表项 ,只需在{{1}的背景中着色并保留li.ttt透明的背景:

li.filtered

将所有内容放在一起(更简单的版本):

&#13;
&#13;
li.filtered,
li.ttt {
    display:block;
    height: 32px;
    line-height: 32px;
    }

li.ttt {
    background-color: rgba(244,244,244,1);
    }

li.filtered a,
li.ttt a {
    font-size: 12px;
    }
&#13;
LI.filtered A {
      position: relative;
      padding: 1px 20px 1px 4px;
      background: #F0F0FF url(https://cdn3.iconfinder.com/data/icons/luchesa-vol-9/128/Lollipop-16.png) no-repeat scroll right 0;
      background-position: right bottom;
      font-weight: 400;
      color: #08C;
      text-decoration: none;
    }
    LI.filtered .testt {
      background: #F0F0FF;
      padding: 1px 4px 1px 4px;
      font-weight: 400;
      color: #08C;
      text-decoration: none;
    }
    #result-filters {
      margin: 0, 0, -30px;
    }
    #result-filters UL {
      display: inline;
      list-style: outside none none;
      margin: 0;
      padding: 0;
      font-size: 12px;
      font-family: arial, helvetica, sans-serif;
    }
    LI.filtered,
    #result-filters LI.filtered {
      padding-left: 0;
      background: transparent none repeat scroll 0 0;
    }
    #result-filters UL LI {
      margin: 0 8px 0 0;
      float: left;
    }
    LI.ttt A {
      position: relative;
      padding: 1px 4px 1px 20px;
      background: #F0F0FF url(https://cdn3.iconfinder.com/data/icons/luchesa-vol-9/128/Lollipop-16.png) no-repeat scroll left 0;
      background-position: left;
      font-weight: 400;
      color: #08C;
      text-decoration: none;
      font-size: xx-large;
      -webkit-border-radius: 4px;
      -moz-border-radius: 4px;
      border-radius: 4px;
      background-color: #F4F4F4;
      min-height: 61px;
      border: 0;
      line-height: 1.2;
      letter-spacing: 1px;
      width: 137px;
      text-align: center;
      font-family: Tahoma;
    }


li.filtered,
li.ttt {
    display:block;
    height: 32px;
    line-height: 32px;
    }

li.ttt {
    background-color: rgba(244,244,244,1);
    }

li.filtered a,
li.ttt a {
    font-size: 12px;
    }
&#13;
&#13;
&#13;