在文本长度可能变化的地方,将文本和图像水平居中对齐



我有一个div,我必须在它的右侧放置一个图标和一些文本,并排列整个事情,使它们两个保持中心对齐(图像和文本之间有一个小间隙)。问题是,文本长度可能会有所不同。因此,如果它是像利比亚这样的短文本,整个元素将挤在靠近中心的地方,而如果是像波斯尼亚和黑塞哥维那这样的大文本,它将展开(同时仍然居中),图像逐渐靠近左侧。我试过这个:

<div class='container'>
  <div class='imagetext'>
    <img class='location-icon' src="http://images.clipartpanda.com/blue-location-icon-Location-Icon-Blue.png" />
    <span class='location-text'>
        Bosnia and Herzigovina
    </span>
  </div>
</div>

CSS

.container {
  width: 260px;
  height: 298px;
  background: yellow;
}
.imagetext {
  width: 100%;
  height: 20px;
  background: green;
  position: relative;
  top: 50px;
  text-align: center;
}
.location-icon {
  width: 20px;
  display: inline-block;
  margin-right: 5px;
  float: left;
}
.location-text {
  font-size: 12px;
  display: inline-block;
  float: left;
  position: relative;
  top: 5px;
}
body {
  background: white;
  font-family: sans-serif;
}

这是小提琴 - https://jsfiddle.net/d8t9e0p6/3/。即使text-align设置为center,我也无法将其居中.如何实现正确的中心对齐?

首先,正如JoostS所说,摆脱你的float:left然后,您将有一个未对齐的文本字符串。 要解决此问题,请去除.location_text上的top:5px;顶部,并向.location-icon添加vertical-align:middle

.container {
  width: 260px;
  height: 298px;
  background: yellow;
}
.imagetext {
  width: 100%;
  height: 20px;
  background: green;
  position: relative;
  top: 50px;
  text-align: center;
}
.location-icon {
  vertical-align:middle;
  width: 20px;
  display: inline-block;
  margin-right: 5px;
}
.location-text {
  font-size: 12px;
  display: inline-block;
  position: relative;
}
body {
  background: white;
  font-family: sans-serif;
}
<div class='container'>
  <div class='imagetext'>
    <img class='location-icon' src="http://images.clipartpanda.com/blue-location-icon-Location-Icon-Blue.png" />
    <span class='location-text'>
        Bosnia and Herzigovina
    </span>
  </div>
</div>

更新以添加

如果使用伪元素,还可以大幅减少标记:

.container {
  width: 260px;
  height: 298px;
  background: yellow;
}
.imagetext {
  width: 100%;
  height: 20px;
  background: green;
  position: relative;
  top: 50px;
  text-align: center;
  font-size: 12px;
}
.imagetext::before{
  display:inline-block;
  content:'';
  background-image:url(http://images.clipartpanda.com/blue-location-icon-Location-Icon-Blue.png);
  background-size:contain;
  width:20px;
  height:20px;
  background-repeat:no-repeat;
  vertical-align:middle;
  margin-right:5px;
}
body {
  background: white;
  font-family: sans-serif;
}
<div class='container'>
  <div class='imagetext'>
    Bosnia and Herzigovina
  </div>
</div>

我更新了它 https://jsfiddle.net/d8t9e0p6/4/

您必须将文本对齐中心放在容器上,图像文本容器需要宽度自动和显示内联块;

.container {
  width: 260px;
  height: 298px;
  background: yellow;
  text-align:center;
}
.imagetext {
  width:auto;
  height: 20px;
  background: green;
  position: relative;
  top: 50px;
  text-align: center;
  display:inline-block;
}

删除float:left css 语句。

相关内容

  • 没有找到相关文章

最新更新