Jump to content

Как сделать блок скрывающимся при выборе вкладки в табах?


alex1998
 Share

Recommended Posts

Нужно чтобы при нажатии другие блоки убирались, а не перекрывались. БЕЗ скриптов.


/* css таба */

.tabs {
position: relative;
min-height: 350px; 
font-family: calibri;
color: #404C59; 

}
.tab {
float: left;
}
.tab label {
background:#ccc;
;
position: relative;
left: 1px; padding: 10px; background-color: #E6E6E6;
}
.tab [type=radio] {
display: none;

}
.content {
position: absolute;
left: 0;
background: #FAFAFA;
right: 0;
margin-top: 10px;
padding:10px;
}
[type=radio]:checked ~ label {
background: #FAFAFA;
z-index: 2;
}
[type=radio]:checked ~ label ~ .content {
z-index: 1;
}

.tg {border-collapse:collapse;border-spacing:0;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg .tg-s6z2{text-align:center}
.tg .tg-j1h2{font-size:x-large;font-family:"Lucida Console", Monaco, monospace !important;;text-align:center}
.tg .tg-a0td{font-size:100%}
.tg .tg-mysd{font-size:18px;font-family:"Lucida Console", Monaco, monospace !important;;text-align:center}
.tg .tg-g8f1{font-size:100%;text-align:center}

.tg {border-collapse:collapse;border-spacing:0;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:normal;padding:10px 5px;border-style:solid;border-width:1px;overflow:hidden;word-break:normal;}
.tg .tg-s6z2{text-align:center}
.tg .tg-y5uk{font-weight:bold;font-style:italic;font-size:large;text-align:center}
.tg .tg-xloo{font-weight:bold;font-style:italic;font-size:medium;background-color:#f2cf44;text-align:center}


<!-- HTML -->

<html>
<body>
<div class="tabs">

<div class="tab">
<input type="radio" id="tab-1" name="tab-group-1" checked>
<label for="tab-1">Полиграфия</label>

<div class="content">
<p>
<table class="tg" style="table-layout: fixed; width: 299px; float:left; ">
<colgroup>
<col style="width: 145px">
<col style="width: 49px">
<col style="width: 54px">
<col style="width: 51px">
</colgroup>
<tr>
<th class="tg-mysd" rowspan="2">ТИП ПРОДУКЦИИ</th>
<th class="tg-j1h2" colspan="3">ЦЕНА</th>
</tr>
<tr>
<td class="tg-g8f1">USD</td>
<td class="tg-g8f1">RUB</td>
<td class="tg-a0td">UAH</td>
</tr>
<tr>
<td class="tg-031e">Билборд</td>
<td class="tg-s6z2">100</td>
<td class="tg-s6z2">3500</td>
<td class="tg-s6z2">1200</td>
</tr>
<tr>
<td class="tg-031e">Буклет</td>
<td class="tg-s6z2">40</td>
<td class="tg-s6z2">1400</td>
<td class="tg-s6z2">480</td>
</tr>
<tr>
<td class="tg-031e">Флаер</td>
<td class="tg-s6z2">30</td>
<td class="tg-s6z2">1050</td>
<td class="tg-s6z2">360</td>
</tr>
<tr>
<td class="tg-031e">Дисконт карты</td>
<td class="tg-s6z2">30</td>
<td class="tg-s6z2">1050</td>
<td class="tg-s6z2">360</td>
</tr>
<tr>
<td class="tg-031e">Визитки</td>
<td class="tg-s6z2">5</td>
<td class="tg-s6z2">175</td>
<td class="tg-s6z2"></td>
</tr>
</table>
</p>
</div> 
</div>

<div class="tab">
<input type="radio" id="tab-2" name="tab-group-1">
<label for="tab-2">Закладка №2</label>

<div class="content">
<p>

</p>

<img src="http://placekitten.com/200/100">
</div> 
</div>

<div class="tab">
<input type="radio" id="tab-3" name="tab-group-1">
<label for="tab-3">Закладка №3</label>

<div class="content">
<p>Содержание закладки №3</p>

<img src="http://placedog.com/200/100">
</div> 
</div>

<div class="tab">
<input type="radio" id="tab-4" name="tab-group-1">
<label for="tab-4">Закладка №4</label>
<div class="content">
<p>Содержание закладки №4</p>

<img src="http://placedog.com/200/100">
</div> 
</div>
</div>
</body>
</html>

Link to comment
Share on other sites

5265835.gif

 

Выложите в песочницу и подробнее опишите проблему.

http://cssdesk.com/uepST Видете, при нажатии на соседнюю вкладку, прошлая не закрывается. и получается некрасиво мягко говоря. Нужно, чтобы при переключениях предыдущие убирались

Link to comment
Share on other sites

[type="radio"]:checked ~ label ~ .content {    display: block;    z-index: 1;}
.content {    background: none repeat scroll 0 0 #FAFAFA;    left: 0;    margin-top: 10px;    padding: 10px;    position: absolute;    right: 0;    display: none;}

Попробуй так.

 

Вот более наглядно: http://jsfiddle.net/3nXa6/1/

Edited by Q4Dizzy
Link to comment
Share on other sites

[type="radio"]:checked ~ label ~ .content {    display: block;    z-index: 1;}
.content {    background: none repeat scroll 0 0 #FAFAFA;    left: 0;    margin-top: 10px;    padding: 10px;    position: absolute;    right: 0;    display: none;}

Попробуй так.

 

Вот более наглядно: http://jsfiddle.net/3nXa6/1/

 

все круто, но мимовольно вылезла проблема с наполнением контента. т.е. контент не удленяет подложку(див на котором сидит таб), а просто вылазит за ее пределыTXHllBWrFCo.jpg

Edited by alex1998
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
Reply to this topic...

×   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

  • Similar Content

    • By Mondeus
      Доброго всем времени суток. Прошу помощи. Научите принципу изменения футера. Движок Xenforo. Версия 2.2.10. Стиль дефолтный. Что именно нужно в итоге на фото примере. Мой шаблон app.footer less имеет следующее значение. 
      .p-footer { .xf-publicFooter(); a { .xf-publicFooterLink(); } } .p-footer-inner { .m-pageWidth(); .m-pageInset(); padding-top: @xf-paddingMedium; padding-bottom: @xf-paddingLarge; } .p-footer-row { .m-clearFix(); margin-bottom: -@xf-paddingLarge; } .p-footer-row-main { float: left; margin-bottom: @xf-paddingLarge; } .p-footer-row-opposite { float: right; margin-bottom: @xf-paddingLarge; } .p-footer-linkList { .m-listPlain(); .m-clearFix(); > li { float: left; margin-right: .5em; &:last-child { margin-right: 0; } a { padding: 2px 4px; border-radius: @xf-borderRadiusSmall; &:hover { text-decoration: none; background-color: fade(@xf-publicFooterLink--color, 10%); } } } } .p-footer-rssLink { > span { position: relative; top: -1px; display: inline-block; width: 1.44em; height: 1.44em; line-height: 1.44em; text-align: center; font-size: .8em; background-color: #4682B4; border-radius: 2px; } .fa-rss { color: white; } } .p-footer-copyright { margin-top: @xf-elementSpacer; text-align: center; font-size: @xf-fontSizeSmallest; } .p-footer-debug { margin-top: @xf-paddingLarge; text-align: right; font-size: @xf-fontSizeSmallest; .pairs > dt { color: inherit; } } @media (max-width: @xf-responsiveMedium) { .p-footer-row-main, .p-footer-row-opposite { float: none; } .p-footer-copyright { text-align: left; padding: 0 4px; // aligns with other links } }  

    • By zeiger2
      Здравствуйте! У меня стоит задача, что при наведении на блок li строка должна поменять цвет, в том числе и картинка. Я меняю картинку с помощью 
      background-image: none;     background: url(../img/check_icon_red.png) left no-repeat;   Но теперь картинка позицианируется не там где должна, её можно поставить на место только вручную, через -100px. Нужно поставить ровно туда, где она была. Должна быть в одном ряду с другими
    • By Mix9
      есть див с 5 img, при уменьшении экрана див выходит за него. Я добавил overflow: auto для этого div в надежде на то, что я смогу прокручивать фотки с помощью скроллбара, однако даже с ним почему-то я не вижу часть фоток которые вышли за границу. Что с этим можно сделать? класс video повторяется 5 раз, я тут оставил только 1 
      .content{ width: 90%; background-color: #333; } .video{ margin: 0px 4px 0px 4px; width: 310; display: flex; flex-direction:column; } .video_button_text{ margin-top: 10px; display: flex; flex-direction: row; font-size: 20px; color: white; } .video_text_div{ display: inline-block; width: 250px; } .video_text{ text-align: justify-all; margin: 0px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; } .slidan_videos{ margin: 0px 10px 0px 20px; overflow: auto; width: auto; margin-bottom: 50px; display: flex; flex-direction: row; justify-content: space-around; } <div class="content"> <div class = slidan_videos> <div class = video> <div> <a href = 'ссылка'><img class="img" src=""картинка"></a> </div> <div class = video_button_text> <div class = avatarka_div> <a href="ссылка" target="_blank"><img class = avatarka src="картинка"></a> </div> <div class = video_text_div> <p class = video_text><a href="ссылка">текст</a></p> </div> </div> </div>
    • By Марко
      Добрый день. Начинающий программист, столкнулся с проблемой. Селектор .class не работает должным образом. Несмотря на правильное, я надеюсь, описание, на web-странице не отображается ни одно изображение. С чем может быть связано? Заранее спасибо за помощь. 



×
×
  • 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