问题集中在哪里?

时间:2017-05-16 17:38:33

标签: html css svg

我试图以我的形象为中心" Logo_Home.svg"在我的页面上但由于某种原因它不起作用并且坐在左上角。有谁知道我在哪里出错了,能指出我正确的方向吗?

感谢。

编辑1

我刚把这个类添加到图片标签中,因为我忘记了它,但它仍然不是水平垂直居中。任何人都知道如何解决这个问题?

编辑2

我试图实现的目标示例。 enter image description here



body {
  margin: 0;
  background-image: url(http://pa2.site.com/IMAGES/Background.svg);
  background-repeat: repeat;
}

li {
  float: right;
  list-style-type: none;
  border: 2px solid #2f8fcb;
  border-radius: 10px;
  background-color: #2f8fcb;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  width: 200px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-right: 40px;
  margin-top: 40px;
}

ul {
  margin: 0;
}

img.center {
  display: block;
  margin: 0 auto;
}

<ul>
  <li>REGISTER</li>
  <li>LOGIN</li>
</ul>

<img src="http://pa2.site.com/IMAGES/Logo_Home.svg" class="center">
&#13;
&#13;
&#13;

3 个答案:

答案 0 :(得分:0)

body {
  margin: 0;
  background-image: url(http://pa2.sulmaxcp.com/IMAGES/Background.svg);
  background-repeat: repeat;
}

li {
  float: right;
  list-style-type: none;
  border: 2px solid #2f8fcb;
  border-radius: 10px;
  background-color: #2f8fcb;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  width: 200px;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-right: 40px;
  margin-top: 40px;
}

ul {
  margin: 0;
}

.contain {
  padding-top:20%;
}
img.center{
  display:block;
  margin: 0 auto;
}
 
<ul>
  <li>REGISTER</li>
  <li>LOGIN</li>
</ul>

<div class="contain">
<img src="http://pa2.sulmaxcp.com/IMAGES/Logo_Home.svg" class="center">
</div>

我将你的img放在一个div中,使用margin-top

垂直居中

答案 1 :(得分:0)

这似乎得到了你正在寻找的东西:

ul {
  float: right;
  margin: 0;
}

img.center {
  clear: both;
  display: block;
  margin: 0 auto;
}

Demo

答案 2 :(得分:0)

我尝试使用flex-box解决这个问题,似乎已经完成了这个伎俩。 我开始将图像包装在一个带有中心类的div中。然后,我应用此CSS来实现居中的内容:

div.center{
  display: flex;
  align-items:center;
  justify-content:center;
  height:70vh;
  width:90vw;
}

看看这个jsfiddle