Jump to content
  • 0

position: fixed + margin


orel
 Share

Question

Здравствуйте. Уж очень давно пытаюсь разобраться с одной вещью - взаимоотношениями position:fixed и margin:auto

Ситуация такая: нужно чтобы был неподвижный при прокрутке блок, при этом чтобы он всегда находился по центру вне зависимости от разрешения экрана.

Вот блок, сейчас вот бьюсь с кнопкой "Наверх"

e03a17f91ce6022422e640d58be37f93.jpeg

Стрелкой показано куда нужно сместить блок, css привязанный к блоку такой:

#upButton{
position:fixed;
margin:auto;
bottom:0px;
background: #b1b1b1;
color: #ffffff;
width:100px;
height:30px;
font: 14pt Calibri;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

Смог добиться такого результата только вложив блок который должен быть по середине в другой блок, результат вот:

2e4a9e169110f93aa21092cf3fd9f5e8.jpeg

Css и Html:

 Css:
#music-box{
position:fixed;
width:100%;
z-index:6;
}

#music {
box-shadow: 0 0 10px rgba(0,0,0,0.5);
background-color: #ffffff;
width:600px;
height:40px;
background-repeat: no-repeat;
margin:auto;
text-align:left;
}

HTML:
<div id="music-box">
<div id="music" class="music">
<div id="audioplayer425">....</div>
</div>
</div>

Но хочу найти более простой способ. Если есть - пожалуйста помогите. А то тот способ который у меня работает на "плеере" (2 скриншот) уж очень неудобен.

Заранее спасибо!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Нужно прописать для блока .music:


.music{
background:#fff;
box-shadow:0 0 10px rgba(0,0,0,0.5);
width:600px;
height:40px;
margin-left:-300px;
position:fixed;
left:50%;
}

Спасибо! Я думаю что тоже самое сработает и с блоком .upButton

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