我有以下HTML代码,并且尝试将链接放置在图像的正下方,但是失败很严重。



<!DOCTYPE html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<html>
<head>
<body>
<style>
  html, body {
  height: 90%;
  background:#000000;
  color:#fff;
}
img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
max-width: 100%;
    height: auto;
}

  </style>
</head>


<img src="http://www.clker.com/cliparts/b/3/1/7/1374685821502984977google%20logo-md.png">
<br><a href="/deutsch/">Deutsch</a> | <a href="/international/">English</a></p>


</body>
</html>





但是,我需要将链接放置在图像的正下方(居中),但这似乎是不可能的。

我想知道你们中是否有人知道在这种情况下可行的解决方案。

最佳答案

尝试这个




  <!DOCTYPE html>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <html>
    <head>
    <body>
    <style>
       html, body {
  height: 90%;
  background:#000000;
  color:#fff;
  text-align: center;
}
 img {
    max-width: 100%;
    height: auto;
}
a{
  width: 100%;
}
      </style>
    </head>


    <img src="http://www.clker.com/cliparts/b/3/1/7/1374685821502984977google%20logo-md.png">
    <br><a href="/deutsch/">Deutsch</a> | <a href="/international/">English</a></p>

    </body>
    </html>

关于css - CSS-如何在CSS样式居中图片下方显示文本?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49807300/

10-12 12:26