CSS - 如何在 css 样式居中图像下方显示文本



我有以下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>

试试这段代码

<!DOCTYPE html>
<html lang="en-US">
    <head>
        <title>Title</title>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <style>
            html, body {
                  height: 90%;
                  background:#000000;
                  color:#fff;
            }
            img {
                max-width: 100%;
            }
            .container {
                position: relative;
            }
            .link {
                position: absolute;
                top: 200px;
                left: 60px;
            }
        </style>
    </head>
    <body>
        <div class="container">
            <img src="http://www.clker.com/cliparts/b/3/1/7/1374685821502984977google%20logo-md.png" alt="" />
            <h3 class="link"><a href="/deutsch/">Deutsch</a> | <a href="/international/">English</a></h3>
        </div>
    </body>
</html>

最新更新