HTML – 如何制作一个CSS’蜗牛’?

前端之家收集整理的这篇文章主要介绍了HTML – 如何制作一个CSS’蜗牛’?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个想要显示为圆形的图像(边界半径:50%),并且在同一行上我想要一些具有设置宽度和背景的文本.我不想硬编码任何值.实现这个目标的最佳方法是什么?

这是picture

fiddle

<div class="header">
    <img class="i" src="http://www.planwallpaper.com/static/images/colorful-triangles-background_yB0qTG6.jpg"/>
    <p class="headingText">Hello</p>
</div>
.i {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.headingText {
    color: white;
    background: black;
    display: inline-block;
    width: 350px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

解决方法

你可以尝试这样的事情:
.header
{
  padding-top:26px;
  padding-left:40px;
  position:relative;
}
.i
{
  position:absolute;
  width:80px;
  height:80px;
  border-radius:50%;
  top:0;
  left:0;
}

.headingText
{
  color:white;
  background:black;
  display:inline-block;
  width:350px;
  padding-top:10px;
  padding-bottom:10px;
  text-align:center;
}
原文链接:/html/227622.html

猜你在找的HTML相关文章