CSS에서 이미지 위에 텍스트를 중앙에 배치하려면 어떻게합니까?
<div class="image">
<img src="sample.png"/>
<div class="text">
<h2>Some text</h2>
</div>
</div>
아래와 같이하고 싶은데 어려움이 있습니다. 현재 CSS입니다.
<style>
.image {
position: relative;
}
h2 {
position: absolute;
top: 200px;
left: 0;
width: 100%;
margin: 0 auto;
width: 300px;
height: 50px;
}
</style>
배경 이미지를 사용할 때 html2pdf에서 출력을 얻지 못합니다.
<style>
#image_container{
width: 1000px;
height: 700px;
background-image:url('switch.png');
}
</style>
<a href="prints.php">Print</a>
<?php ob_start(); ?>
<div id="image_container"></div>
<?php
$_SESSION['sess'] = ob_get_contents();
ob_flush();
?>
다음은 prints.php입니다.
<?php require_once('html2pdf/html2pdf.class.php'); ?>
<?php
$html2pdf = new HTML2PDF('L', 'A4', 'en');
$html2pdf->writeHTML($_SESSION['sess']);
$html2pdf->Output('random.pdf');
?>
답변
다음과 같은 것은 어떻습니까? http://jsfiddle.net/EgLKV/3/
position:absolute
및 사용 z-index
하여 이미지 위에 텍스트를 배치합니다.
#container {
height: 400px;
width: 400px;
position: relative;
}
#image {
position: absolute;
left: 0;
top: 0;
}
#text {
z-index: 100;
position: absolute;
color: white;
font-size: 24px;
font-weight: bold;
left: 150px;
top: 350px;
}
<div id="container">
<img id="image" src="http://www.noao.edu/image_gallery/images/d4/androa.jpg" />
<p id="text">
Hello World!
</p>
</div>
답변
이것은 반응 형 크기로 작업하는 또 다른 방법입니다. 텍스트를 중앙에 유지하고 부모 내에서 위치를 유지합니다. 중앙에 배치하지 않으려면 absolute
매개 변수로 작업하는 것이 더 쉽습니다 . 기본 컨테이너는 display: inline-block
. 작업중인 작업에 따라이를 수행하는 다른 방법이 많이 있습니다.
HTML
<div class="containerBox">
<div class="text-box">
<h4>Your Text is responsive and centered</h4>
</div>
<img class="img-responsive" src="http://placehold.it/900x100"/>
</div>
CSS
.containerBox {
position: relative;
display: inline-block;
}
.text-box {
position: absolute;
height: 100%;
text-align: center;
width: 100%;
}
.text-box:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
h4 {
display: inline-block;
font-size: 20px; /*or whatever you want*/
color: #FFF;
}
img {
display: block;
max-width: 100%;
height: auto;
}
답변
또는 CSS 클래스 sample.png
의 배경 이미지로 설정하지 않는 이유는 무엇 입니까? 이것은 이미지 위에 쓴 것처럼 효과를 줄 것입니다.text
h2
답변
반응 형 디자인의 경우 상대적인 레이아웃과 고정 된 레이아웃을 가진 콘텐츠 (컨테이너에 배치)를 가진 컨테이너를 사용하는 것이 좋습니다.
CSS 스타일 :
/*Centering element in a base container*/
.contianer-relative{
position: relative;
}
.content-center-text-absolute{
position: absolute;
text-align: center;
width: 100%;
height: 0%;
margin: auto;
top: 0;
left: 0;
bottom: 0;
right: 0;
z-index: 51;
}
HTML 코드 :
<!-- Have used ionic classes -->
<div class="row">
<div class="col remove-padding contianer-relative"><!-- container with position relative -->
<div class="item item-image clear-border" ><a href="#"><img ng-src="img/engg-manl.png" alt="ENGINEERING MANUAL" title="ENGINEERING MANUAL" ></a></div> <!-- Image intended to work as a background -->
<h4 class="content-center-text-absolute white-text"><strong>ENGINEERING <br> MANUALS</strong></h4><!-- content div with position fixed -->
</div>
<div class="col remove-padding contianer-relative"><!-- container with position relative -->
<div class="item item-image clear-border"><a href="#"><img ng-src="img/contract-directory.png" alt="CONTRACTOR DIRECTORY" title="CONTRACTOR DIRECTORY"></a></div><!-- Image intended to work as a background -->
<h4 class="content-center-text-absolute white-text"><strong>CONTRACTOR <br> DIRECTORY</strong></h4><!-- content div with position fixed -->
</div>
</div>
IONIC 그리드 레이아웃, 균등 한 간격의 그리드 요소 및 위 HTML에서 사용 된 클래스에 대해서는- 그리드 : 균등 한 간격의 열을 참조하십시오 . 도움이 되었기를 바랍니다 … 🙂
답변
Harry Joy가 지적했듯이 이미지를 div의 배경으로 설정 한 다음 한 줄의 텍스트 만있는 경우 텍스트의 줄 높이를 div 높이와 동일하게 설정할 수 있습니다. 그러면 텍스트가 div의 중심.
라인이 두 개 이상인 경우 디스플레이를 테이블 셀로 설정하고 세로 정렬을 가운데로 설정해야합니다.
답변
2017 년부터는 반응이 더 빠르고 저를 위해 일했습니다. 배지처럼 텍스트를 안쪽과 위에 넣는 것입니다. 숫자 8 대신 데이터베이스에서 데이터를 가져 오는 변수가있었습니다.
이 코드는 위의 Kailas 답변으로 시작되었습니다.
https://jsfiddle.net/jim54729/memmu2wb/3/
내 HTML
<div class="containerBox">
<img class="img-responsive" src="https://s20.postimg.org/huun8e6fh/Gold_Ring.png">
<div class='text-box'>
<p class='dataNumber'> 8 </p>
</div>
</div>
그리고 내 CSS :
.containerBox {
position: relative;
display: inline-block;
}
.text-box {
position: absolute;
height: 30%;
text-align: center;
width: 100%;
margin: auto;
top: 0;
bottom: 0;
right: 0;
left: 0;
font-size: 30px;
}
.img-responsive {
display: block;
max-width: 100%;
height: 120px;
margin: auto;
padding: auto;
}
.dataNumber {
margin-top: auto;
}
답변
똑같이하는 작고 짧은 방법
HTML
<div class="image">
<p>
<h3>Heading 3</h3>
<h5>Heading 5</h5>
</p>
</div>
CSS
.image {
position: relative;
margin-bottom: 20px;
width: 100%;
height: 300px;
color: white;
background: url('../../Images/myImg.jpg') no-repeat;
background-size: 250px 250px;
}