Jump to content
  • 0

Текс на картинке


Barik
 Share

Question

Здравствуйте! Помогите пожалуйста в решении следующей проблемы.

Есть не большая разметка:

 <div id="gallery">
            <div class="container">
                <h2>photos</h2>
                <figure class="photo">
<a href="img/pic1.jpg"></a>
</figure>

Подскажите пожалуйста можно ли поместить текст на картинке? Я читал про элемент figure, но нашёл что только снизу можно текст оформить.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
02.07.2019 в 04:54, Barik сказал:

Подскажите пожалуйста можно ли поместить текст на картинке?

Можно, если использовать относительное и абсолютное позиционирование.

<div class="image">
  <img src="http://placekitten.com/200">
  <span>Lorem, ipsum dolor.</span>
</div>
.image{
  position: relative;
  display: inline-block;
}
img{
  vertical-align: top;
}
span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy