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

时间:2018-04-12 23:37:48

标签: html css html5

我有以下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>
&#13;
&#13;
&#13;

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

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

3 个答案:

答案 0 :(得分:0)

试试这个

  

  <!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>

答案 1 :(得分:0)

你可以在这些情况下使用flex,当你需要在页面上居中和定位元素时,它可以帮助你很多。

        <!DOCTYPE html>
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <html>
    <head>
    <style>
      html, body {
      height: 100vh;
      background:#000000;
      color:#fff;
    }
    
    .imageContainer{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-content: center;
        align-items: center;
    }
    
    p{
        text-align: center;
    }
    
    </style>
    </head>
    <body>
        <div class="imageContainer">
                <img src="http://www.clker.com/cliparts/b/3/1/7/1374685821502984977google%20logo-md.png" />
                <p><a href="/deutsch/">Deutsch</a> | <a href="/international/">English</a></p>
        </div>
        
        
    </body>
    </html>

我留下这个资源,你可以学习。 https://flexboxfroggy.com/

答案 2 :(得分:0)

试用此代码

<!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>