Jump to content
  • 0

Как разместить один блок под другим


nikki4
 Share

Question

что нужно написать в css. чтобы блок 2 распологался под блоком 0?, а 1 под 2?

на всякий случай уточняю, что блок1 и блок2 генерируются пхп скриптом различных размеров.

дело в том, что нужно чтобы при нажатии на одну кнопку пхп выводит блок1, а потом после заполнения блока1 и нажатия на вторую кнопку создается блок2.

но проблема в том, что после нажатия на кнопку 2, окно автоматически переводится на начало к блоку0. вот я хочу сделать так, чтоб при нажатии на кнопку 2. окно попрежнему переводилось к блоку0, но при этом там ниже был не блок1, а блок2, а блок1, под вторым..


<!DOCTYPE html>
<html>
<HEAD>
<style type="text/css">
#zero{
border: 1px solid black;
width:300px;
}
#one {
width:300px;
background: yellow;
border: 1px solid black;

}
#two {
width:300px;
background: green;
border: 1px solid black;
}
</style>
</head>


<body>
<div id="zero">block0</div>
<div id="one">block1</div>
<div id="two">block2</div>
</body>
</html>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

не понятно что вы хотите сделать, если реализацию вкладок, то так


<!DOCTYPE html>
<html>
<HEAD>
<style type="text/css">
#zero{
position:relative;
z-index:3;
border: 1px solid black;
width:300px;
}
#one {
position:relative;
z-index:1;
width:300px;
background: yellow;
border: 1px solid black;

}
#two {
position:relative;
z-index:2;
width:300px;
background: green;
border: 1px solid black;
}
</style>
</head>


<body>
<div id="zero">block0</div>
<div id="one">block1</div>
<div id="two">block2</div>
</body>
</html>

а если вам нужно по позициям на странице, то тут css не хватит, нужно js менять расположение DOM

как у вас сейчас реализованы кнопки тоже не понятно

Edited by Switch74
Link to comment
Share on other sites

  • 0

уже не актуально.. сам понял, что как-то все запутанно записал..

сделал через якорь ) чтоб автоматически на запуске переходило на якорь.. его сначала нет, потому ничего не происходит, а потом он появляется и при дальнейших нажатиях на него происходит переход

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