Jump to content
  • 0

Рамки с подписями для картинок разного размера


Megos
 Share

Question

Здравствуйте!

Есть несколько изображений разного размера с подписями. К ним через див добавляется рамка и фон. Подскажите, пожалуйста, как можно эти изображения выровнять по центру? Сложность в том, что для того, чтобы рамка не расползалась на весь экран, а была только вокруг картинок, я использую float, а тогда пропадает выравнивание, которое работает при указании точного размера дива без float. Но указывать точный размер я не могу, так как он все время разный.

То есть для меня есть 2 способа решения, которые я никак не могу найти:

1. Либо смогу выровнять по центру блоки c float.

2. Либо смогу заставить рамку без float держаться около картинок, а не расползаться на весь экран.

Код 1 c float:

<style>
img {border: 0;}
.caption {border: 1px solid red; padding: 5px; float:left; clear: both; margin: 10px 0px; background: #CCCCCC; position:relative;}
.caption-text {text-align: center; padding-top: 5px;}
</style>


<div align="center">
<div class="caption"><img title="" src="../bathroom-in-green-tile-shower.jpg" alt="" width="338" height="455" /><div class="caption-text">Text</div></div>

<p align="justify" style="clear: both;">img {border: 0}
.caption {border: 1px solid red; padding: 5px; margin: auto; float: left; clear: both; margin: 10px 0px; background: #CCCCCC;}
.caption-text {text-align: center; padding-top: 5px;}</p>

<div class="caption"><img title="" src="../bathroom-in-green-tile-shower.jpg" alt="" width="338" height="455" /><div class="caption-text">Text</div></div>
</div>

6bdf643cb25f7ac2a62379cc90a6ab56.png

Код 2 без float:

<style>
img {border: 0;}
.caption {border: 1px solid red; padding: 5px; margin: 10px 0px; background: #CCCCCC; position:relative;}
.caption-text {text-align: center; padding-top: 5px;}
</style>


<div align="center">
<div class="caption"><img title="" src="../bathroom-in-green-tile-shower.jpg" alt="" width="338" height="455" /><div class="caption-text">Text</div></div>

<p align="justify" style="clear: both;">img {border: 0}
.caption {border: 1px solid red; padding: 5px; margin: auto; float: left; clear: both; margin: 10px 0px; background: #CCCCCC;}
.caption-text {text-align: center; padding-top: 5px;}</p>

<div class="caption"><img title="" src="../bathroom-in-green-tile-shower.jpg" alt="" width="338" height="455" /><div class="caption-text">Text</div></div>
</div>

3da0a9d2079d7ea3d74f646900db2172.png

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

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