Search
 
SCRIPT & CODE EXAMPLE
 

HTML

Text displayed over an image

<style> /* Container holding the image and the text */
.container {
  position: relative;

    
  text-align: center;
  color: white;
}

/* Bottom 
  left text */

  .bottom-left {
  position: absolute;
  
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.top-left {
  position: 
  absolute;
  top: 8px;
  left: 16px;
}

  
/* Top right text */
.top-right {
  
  position: absolute;
  top: 8px;
  
  right: 16px;
}

/* Bottom right text */

  .bottom-right {
  position: absolute;
  bottom: 8px;
  right: 16px;
}

/* Centered text 
  */
.centered {
  position: 
  absolute;
  top: 50%;
  left: 50%;
  
  transform: translate(-50%, -50%);
}</style>

<div class="container">
  <img src="img_snow_wide.jpg" alt="Snow" 
  style="width:100%;">
  <div class="bottom-left">Bottom Left</div>
  
  <div class="top-left">Top Left</div>
  <div class="top-right">Top 
  Right</div>
  <div class="bottom-right">Bottom Right</div>
  
  <div class="centered">Centered</div>
</div> 
Comment

PREVIOUS NEXT
Code Example
Html :: mvc pass model to partial view 
Html :: title in html 
Html :: html make range bar show value 
Html :: HTML started template for bootstrap 
Html :: html5 select 
Html :: delete html 
Html :: multiple checkbox in one line bootstrap 
Html :: when do i put my script in the body tags in html 
Html :: name attribute in html 
Html :: html form element disabled readonly 
Html :: SVG <line 
Html :: how to echo data into an option tag as a link 
Html :: telegram href link code 
Html :: multiple countdown timer js 
Html :: html make a cube 
Html :: how to add image in html from a folder 
Html :: html value attribute 
Html :: how to stop marquee text in html when you hover over it 
Html :: css how to place an icon on a photo 
Html :: how do i link back out a folder using th a-href tag 
Html :: ion select 
Html :: bootstrap 5 official website 
Html :: h3 in html 
Html :: hide table html 
Html :: fork me on github ribbon 
Html :: how to resize all images in a class html 
Html :: html div specific size 
Html :: Dangerously Set innerHTML image 
Html :: html line break 
Html :: color in html 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =