微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

html – CSS“width:auto”无法正常工作

我想.test_info是宽度自动,与#test的宽度不一样.

https://jsfiddle.net/ef6ukobf/

#test {
  background: #26A65B;
  height: 30px;
  width: auto;
  margin-top: -8px;
  margin-left: -8px;
  margin-right: -8px;
}
.test_info {
  background: #00ff00;
  border-radius: 5px;
  height: 20px;
  width: auto;
  margin-top: -2px;
  margin-left: 20px;
}
<div id="test">
  <div class="test_info">50</div>
</div>

解决方法

< div> element是块级别,认情况下它占用容器的整个可用宽度.

如果你想要它是自动宽度(取决于里面的内容),你可以这样做:

.test_info {
  display: inline-block; /*or table*/
}
#test {
  background: #26A65B;
}
.test_info {
  background: #00ff00;
  display: inline-block;
}
<div id="test">
  <div class="test_info">50</div>
</div>

原文地址:https://www.jb51.cc/html/226213.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐