My Problem내가 이미지 위에 떠있는 사업부를 시도했지만 내가 DIV과 이미지 위에 텍스트 상자/상자를 만들고 싶어
작동하지 않습니다, 난 이미 시도했지만.
내 코드가 여기에 표시됩니다 :
HTML/CSS :
.main{
\t position: relative;
\t margin: 8;
}
.main img{
\t position: relative;
\t height: 510px;
\t width: 100%;
}
.main-content{
\t position: absolute;
\t background: white;
\t height: 40px;
\t width: 40px;
}
<!DOCTYPE html>
<html>
<head>
\t <title>PokeMart</title>
\t <link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
\t <div class="header">
\t \t <img src="valor.png">
\t \t <h3>PokeMart</h3>
\t \t <h4><a href="#">Login</a></h4>
\t \t <h4><a href="#">Register</a></h4>
\t </div>
\t <div class="main">
\t \t <img src="bg.jpg" />
\t \t <div class="main-content">Text</div>
\t </div>
\t <div class="footer">
\t \t <h5>Pokemart established 2017, powered by Pokemon Company</h5>
\t \t <h5>Copyright © 2017 LL. All Right Reserved.</h5>
\t \t <div class="contact">
\t \t \t <img src="facebook.png" width="25" height="25">
\t \t \t <img src="google.png" width="25" height="25">
\t \t \t <img src="twitter.png" width="25" height="25">
\t \t \t <img src="github.png" width="25" height="25">
\t \t \t <img src="instagram.png" width="25" height="25">
\t \t </div>
\t </div>
</body>
</html>`
CSS 코드를 바로 떠 DIV, I 디스플레이를 시도 : 인라인 블록은 여전히 작동하지 않습니다 .
플로트와 시도는 :/우 – ram
적용 위치 왼쪽 : 절대; 상단 및 우측으로 조정하십시오. 예 : 위치 : 절대, 상단 : 100px, 우측 : 100px, –
이미지가 페이지의 기능을 제공합니까? 그렇지 않은 경우 CSS 배경 이미지로 변환해야합니다. –