Jump to content
  • 0

Вывод на странице блока под блоком, но в коде они должны быть наоборот


Rudi
 Share

Question

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

код:

<div class="1">текст1</div>

<div class="2">текст2</div>

а на странице они должны отображаться так:

текст2

текст1

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

Нужно первый из потока выкинуть и сместить вниз. Например, так:



div.wrap {
position: relative;
}
div.d1 {
position: absolute;
top: высота_второго_блока;
width: 100%;
}

<div class="wrap">
<div class="d1">Текст 1</div>
<div class="d2">Текст 2</div>
</div>

PS Что за дикая подсветка в коде о_О?

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