Jump to content
  • 0

Размещение картинки в центре слоя


Ururu
 Share

Question

Добрый день.

Слой с логотипом растягивается по всей ширине экрана. Картинка по ширине заведомо больше нужного размера.

Как разместить центр картинки (по горизонтали) строго по центру слоя, желательно в фоне.

Спасибо.

П.С. Резать пополам картинку не хотелось бы.

Edited by Ururu
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

если знаете размер картинки, например 1000px то


img{
position:absolute;
left:50%;
margin-left:-500px;
}

вроде как-то так

для родительского блока не забудь указать position

аа... если нужно в фоне, то


div{
background:url('img');
background-position:center top;
}

Edited by Switch74
Link to comment
Share on other sites

  • 0

hypnocolor, наврятли..

Ururu, раз картинка фиксированная, то способ такой -

для картинки - left: 50%; margin-left: (минус половина ширины картинки);

чтоб понятней было - http://jsfiddle.net/EmcRy/17/

UPD: Вот всегда я так опаздываю)))

Link to comment
Share on other sites

  • 0

а я тут накропалить успел выравнивание подобных картинок по горизонтали не зная их размера


<style>
.outer{width:500px;height:100px;overflow:hidden;border:1px solid #000;}
.outer>.inner{display:inline-block;position:relative;left:50%;}
.outer>.inner>img{position:relative;left:-50%;width:700px;height:100px;background:#ddd;}
</style>
<div class="outer">
<span class="inner">
<img>
</span>
</div>

Edited by Switch74
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