我创建了一个响应式网页,其中图像为背景,另一个图像(徽标)位于页面中心。
问题是我想在中心图像(徽标)的正下方放置一个标题。我尝试使用padding-top来设置它,但它效率低且反应不灵活。
我想响应地将文字放在居中的图像下面。
这是我的代码。
@font-face {
font-family: 'Raleway';
src: url('assets/font/Raleway-Thin.ttf') format ('ttf');
}
html,
body {
margin: 0;
height: 100%;
overflow: hidden;
}
body {
background-image: url('assets/image/bg.png');
background-size: cover;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
}
p {
font-family: 'Raleway';
color: white;
text-align: center;
padding-top: 60% font-size: 17px;
}
img.ri {
position: absolute;
max-width: 40%;
top: 10%;
left: 10%;
}
img.ri:empty {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media screen and (orientation: portrait) {
p {
font-family: 'Raleway';
color: white;
text-align: center;
font-size: 14px;
padding-top: 65%
}
img.ri {
max-width: 75%;
}
}
@media screen and (orientation: landscape) {
img.ri {
max-height: 85%;
}
}

<body>
<img class="ri" src="assets/image/logo.png">
<p>THIS WEBSITE IS CURRENTLY UNDER MAINTENANCE</p>
</body>
&#13;
答案 0 :(得分:2)
试试这个,我想这就是你想要的。
将logo
和text
换成div e.g: <div class='wrapper'>
并将css应用于此课程。
<强> CSS 强>
.wrapper {
width:100%;
text-align:center;
padding-top:15%;
position:relative;
}
以下是经过修改的代码段
@font-face {
font-family: 'Raleway';
src: url('assets/font/Raleway-Thin.ttf') format ('ttf');
}
html,
body {
margin: 0;
height: 100%;
overflow: hidden;
}
body {
background-image: url('assets/image/bg.png');
background-size: cover;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
overflow:auto;
}
.wrapper {
width:100%;
text-align:center;
top:30%;
position:relative;
}
p {
font-family: 'Raleway';
color: black;
text-align: center;
font-size: 17px;
margin-top: 5px;
max-width: 70%;
margin-left: auto;
margin-right: auto;
}
img.ri {
max-width: 40%;
}
&#13;
<body>
<div class="wrapper">
<img class="ri" src="http://dummyimage.com/200x200/3498db/fff">
<p>THIS WEBSITE IS CURRENTLY UNDER MAINTENANCE</p>
</div>
</body>
&#13;
答案 1 :(得分:1)
我认为你想要这样的东西,试试Fiddle
@font-face {
font-family: 'Raleway';
src: url('assets/font/Raleway-Thin.ttf') format ('ttf');
}
html, body{
margin:0;
height:100%;
overflow:hidden;
}
body {
background-image: url('assets/image/bg.png');
background-size: cover;
background-position: center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
}
p{
font-family: 'Raleway';
color:#000;
text-align: center;
font-size: 17px;
}
.center
{
left:0;
right:0;
top:0;
bottom:0;
margin:0 auto;
position:absolute;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
&#13;
<body>
<p class="center"> <img class="ri" src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"><br>THIS WEBSITE IS CURRENTLY UNDER MAINTENANCE</p>
</body>
&#13;
答案 2 :(得分:0)
试试这个:
<body>
<figure>
<img class="ri" src="assets/image/logo.png">
<figcaption>THIS WEBSITE IS CURRENTLY UNDER MAINTENANCE</figcaption>
</figure>
</body>
答案 3 :(得分:0)
.member {
display: inline-block;
width:31%;
vertical-align: top;
text-align:center;
position:relative;
}
.name {
display: inline;
}
.member img {
width: 100%;
display: block;
}
<div id="design-cast">
<h4>Design</h4>
<div class="member">
<img src="http://i.imgur.com/zmPeyso.png" class="img-responsive img-thumbnail" alt="Responsive image" />
<div class="name">Name Description</div>
</div>
</div>