第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

<ul> 和 <p> 沒有包裹在 css 網(wǎng)格布局中

<ul> 和 <p> 沒有包裹在 css 網(wǎng)格布局中

MMTTMM 2023-10-24 17:22:57
我正在嘗試?yán)斫?CSS 網(wǎng)格布局,到目前為止我很喜歡它的每一點(diǎn)!但是,我似乎無法讓代碼生效。當(dāng)導(dǎo)航側(cè)邊欄填滿整個(gè)寬度時(shí),我希望右側(cè)的段落在導(dǎo)航下方分解。我知道如何使用 Flexbox 和媒體查詢(flex-direction:行與列)來做到這一點(diǎn),但我真的不明白如何使用 CSS 網(wǎng)格來做到這一點(diǎn)。你能幫助我嗎?.container {  display: grid;  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));  grid-gap: 10px;}/* Navigation */.legal-navi {  grid-column: 1;  list-style: none;  padding: 0;}.legal-navi li {  width: 100%;  box-sizing: border-box;  /* border */  border: black solid;  border-width: 1px 0 0 0;}.legal-navi li a {  box-sizing: border-box;  width: 100%;  height: 100%;  padding: 20px;  display: block;}.legal-navi li:last-child {  border-width: 1px 0 1px 0;}/* content */.legal-content {  grid-column: 2 / -1;}<div class="container">  <ul class="legal-navi">    <li>      <a href="lorem">Lorem</a>    </li>    <li>      <a href="ipsum">Ipsum</a>    </li>    <li>      <a href="dolor">Dolor</a>    </li>    <li>      <a href="ahmet">Ahmet</a>    </li>  </ul>
查看完整描述

2 回答

?
拉莫斯之舞

TA貢獻(xiàn)1820條經(jīng)驗(yàn) 獲得超10個(gè)贊

您明確定義了,grid-column因此2這種情況不會(huì)發(fā)生。順便說一句,如果您不想使用媒體查詢,則此類任務(wù)不適合 CSS 網(wǎng)格。


您可以使用 Flexbox 來完成此操作,而無需媒體查詢,如下所示:


.container {

  display: flex;

  flex-wrap: wrap;

}


.legal-navi {

  list-style: none;

  padding: 0;

  width: 250px;

  max-width: 100%;

  flex-grow: 1;

}


.legal-content {

  width: calc(100% - 250px);

  min-width: 250px;

  flex-grow: 1;

  padding-left: 10px;

}



/**/


.legal-navi li {

  width: 100%;

  border: black solid;

  border-width: 1px 0 0 0;

}


.legal-navi li a {

  width: 100%;

  height: 100%;

  padding: 20px;

  display: block;

}


.legal-navi li:last-child {

  border-width: 1px 0 1px 0;

}


* {

  box-sizing: border-box;

}

<div class="container">

  <ul class="legal-navi">

    <li>

      <a href="lorem">Lorem</a>

    </li>

    <li>

      <a href="ipsum">Ipsum</a>

    </li>

    <li>

      <a href="dolor">Dolor</a>

    </li>

    <li>

      <a href="ahmet">Ahmet</a>

    </li>

  </ul>

  <p class="legal-content">

    Cry louder at reflection eat half my food and ask for more so dont wait for the storm to pass, dance in the rain for tweeting a baseball poop on floor and watch human clean up lick the plastic bag but stand with legs in litter box, but poop outside. Stand

    with legs in litter box, but poop outside cats are fats i like to pets them they like to meow back, twitch tail in permanent irritation so immediately regret falling into bathtub yet nyan fluffness ahh cucumber!, but the door is opening! how exciting

    oh, it's you, meh purr while eating. When in doubt, wash eat owner's food so sit in a box for hours and skid on floor, crash into wall pretend not to be evil. Give attitude if human is on laptop sit on the keyboard so demand to have some of whatever

    the human is cooking, then sniff the offering and walk away, cat slap dog in face. Hide from vacuum cleaner purrr purr littel cat, little cat purr purr or eat the fat cats food. Eat an easter feather as if it were a bird then burp victoriously, but

    tender pee in human's bed until he cleans the litter box sleep in the bathroom sink sleep nap but furrier and even more furrier hairball cat gets stuck in tree firefighters try to get cat down firefighters get stuck in tree cat eats firefighters'

    slippers. Weigh eight pounds but take up a full-size bed poop on grasses but scream for no reason at 4 am, sleep nap plays league of legends sit on human they not getting up ever for my slave human didn't give me any food so i pooped on the floor.

    Meow. Meow for food, then when human fills food dish, take a few bites of food and continue meowing cat fur is the new black cat fur is the new black , cough hairball, eat toilet paper grab pompom in mouth and put in water dish for stare out cat door

    then go back inside i love cats i am one wake up scratch humans leg for food then purr then i have a and relax. Annoy kitten brother with poking. Curl up and sleep on the freshly laundered towels eat too much then proceed to regurgitate all over living

    room carpet while humans eat dinner, for sit on human sleep everywhere, but not in my bed i show my fluffy belly but it's a trap! if you pet it i will tear up your hand and sit on human they not getting up ever. Mewl for food at 4am x intently sniff

    hand cat milk copy park pee walk owner escape bored tired cage droppings sick vet vomit but show belly nyan fluffness ahh cucumber! so you call this cat food. Meowing chowing and wowing then cats take over the world for chase ball of string for being

    gorgeous with belly side up. Why use post when this sofa is here milk the cow or favor packaging over toy pet my belly, you know you want to; seize the hand and shred it!. Sniff sniff chew on cable stare at owner accusingly then wink for eat the rubberband,

    asdflkjaertvlkjasntvkjn (sits on keyboard) the door is opening! how exciting oh, it's you, meh. Eat prawns daintily with a claw then lick paws clean wash down prawns with a lap of carnation milk then retire to the warmest spot on the couch to claw

    at the fabric before taking a catnap. Poop in a handbag look delicious and drink the soapy mopping up water then puke giant foamy fur-balls hide head under blanket so no one can see hate dog, so human give me attention meow i can haz. Behind the couch

    climb leg, so sun bathe. Ask to be pet then attack owners hand sleep on dog bed, force dog to sleep on floor lies down , for rub butt on table. Mew chase ball of string so scratch at fleas, meow until belly rubs, hide behind curtain when vacuum cleaner

    is on scratch strangers and poo on owners food, yet intently stare at the same spot, yet plays league of legends mesmerizing birds for cat jumps and falls onto the couch purrs and wakes up in a new dimension filled with kitty litter meow meow yummy

    there is a bunch of cats hanging around eating catnip . Scratch at fleas, meow until belly rubs, hide behind curtain when vacuum cleaner is on scratch strangers and poo on owners food my left donut is missing, as is my right but give me some of your

    food give me some of your food give me some of your food meh, i don't want it i is not fat, i is fluffy, but i like big cats and i can not lie, but lick face hiss at owner, pee a lot, and meow repeatedly scratch at fence purrrrrr eat muffins and poutine

    until owner comes back. Lick sellotape find empty spot in cupboard and sleep all day destroy the blinds and stare at owner accusingly then wink ccccccccccccaaaaaaaaaaaaaaatttttttttttttttttssssssssssssssss but kitty pounce, trip, faceplant you didn't

    see that no you didn't definitely didn't lick, lick, lick, and preen away the embarrassment for mesmerizing birds. Shove bum in owner's face like camera lens Gate keepers of hell or i heard this rumor where the humans are our owners, pfft, what do

    they know?!.

  </p>

</div>


查看完整回答
反對(duì) 回復(fù) 2023-10-24
?
弒天下

TA貢獻(xiàn)1818條經(jīng)驗(yàn) 獲得超8個(gè)贊

我想你可以看看它是如何在 bootstrap 中解決的。側(cè)邊欄根本不展開。查看它們的組成以及何時(shí)使用類:

  • 容器 此類應(yīng)具有取決于 @mediaquery 設(shè)置的動(dòng)態(tài)寬度。

  • row 您還需要做一些事情來分隔線。了解 row 類的工作原理。

一般來說,引導(dǎo)文檔本身引用頁面: https://css-tricks.com/snippets/css/a-guide-to-flexbox/#flexbox-background

你已經(jīng)在純 CSS 上解釋了這個(gè)主題 - 這可能就是你的意思......

使用 mediaquery 的網(wǎng)格示例

<style>

.left, .right {

  float: left;

  width: 20%; /* The width is 20%, by default */

}


.main {

  float: left;

  width: 60%; /* The width is 60%, by default */

}


/* Use a media query to add a breakpoint at 800px: */

@media screen and (max-width: 800px) {

  .left, .main, .right {

    width: 100%; /* The width is 100%, when the viewport is 800px or smaller */

  }

}

</style> 


查看完整回答
反對(duì) 回復(fù) 2023-10-24
  • 2 回答
  • 0 關(guān)注
  • 134 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)