久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

      • <bdo id='rmQBk'></bdo><ul id='rmQBk'></ul>

      <small id='rmQBk'></small><noframes id='rmQBk'>

    1. <legend id='rmQBk'><style id='rmQBk'><dir id='rmQBk'><q id='rmQBk'></q></dir></style></legend>
      <i id='rmQBk'><tr id='rmQBk'><dt id='rmQBk'><q id='rmQBk'><span id='rmQBk'><b id='rmQBk'><form id='rmQBk'><ins id='rmQBk'></ins><ul id='rmQBk'></ul><sub id='rmQBk'></sub></form><legend id='rmQBk'></legend><bdo id='rmQBk'><pre id='rmQBk'><center id='rmQBk'></center></pre></bdo></b><th id='rmQBk'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='rmQBk'><tfoot id='rmQBk'></tfoot><dl id='rmQBk'><fieldset id='rmQBk'></fieldset></dl></div>

      1. <tfoot id='rmQBk'></tfoot>

        浮動子元素:溢出:隱藏或清除:兩者?

        Floated Child Elements: overflow:hidden or clear:both?(浮動子元素:溢出:隱藏或清除:兩者?)
          <bdo id='gE1fL'></bdo><ul id='gE1fL'></ul>
          <legend id='gE1fL'><style id='gE1fL'><dir id='gE1fL'><q id='gE1fL'></q></dir></style></legend>

                  <tbody id='gE1fL'></tbody>
                <i id='gE1fL'><tr id='gE1fL'><dt id='gE1fL'><q id='gE1fL'><span id='gE1fL'><b id='gE1fL'><form id='gE1fL'><ins id='gE1fL'></ins><ul id='gE1fL'></ul><sub id='gE1fL'></sub></form><legend id='gE1fL'></legend><bdo id='gE1fL'><pre id='gE1fL'><center id='gE1fL'></center></pre></bdo></b><th id='gE1fL'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='gE1fL'><tfoot id='gE1fL'></tfoot><dl id='gE1fL'><fieldset id='gE1fL'></fieldset></dl></div>
              • <small id='gE1fL'></small><noframes id='gE1fL'>

                <tfoot id='gE1fL'></tfoot>

                  本文介紹了浮動子元素:溢出:隱藏或清除:兩者?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  限時送ChatGPT賬號..

                  作為一名網絡開發人員,我經常會在另一個(父)div 中放置兩個浮動(子)div.實際上我整天都在這樣做.

                  As a web developer I frequently will have two floated (child) divs inside of another (parent) div. Actually I do this all day long.

                  <style type="text/css">
                      #left {float:left;}
                      #right {float:right;}
                  </style>
                  <div id="parent">
                      <div id="left" class="child">&nbsp;</div>
                      <div id="right" class="child">&nbsp;</div>
                  </div>
                  

                  如果沒有額外的 css/html,這是行不通的,因為父級不會自動增長以適應浮動的子級.有兩種流行的方法可以克服這個問題:
                  1) 將 overflow:hidden 添加到父級的 css 中.
                  2) 添加第三個清除"子 <br style="clear:both;"/>.

                  This doesn't work without an extra bit of css/html because the parent doesn't automatically grow to fit floated children. There are two popular ways of overcoming that:
                  1) Add overflow:hidden to the parent's css.
                  2) Add a 3rd "clearing" child <br style="clear:both;" />.

                  我知道關于這些事情還有其他一些類似的問題,但我的問題是:

                  I know there's a few other similar questions about such things, but my question is:

                  哪種方法更好,為什么?什么各有優劣?

                  Which method is better and why? What are the pros and cons of each?

                  推薦答案

                  1. 隱藏溢出 - 非常可靠的方法.主要缺點是如果您在父元素上設置高度,則任何溢出都將......嗯,隱藏.我在創建帶有浮動列表項的菜單時發現了這一點 - 子菜單不會出現.

                  1. Hidden overflow - pretty solid method. The main disadvantage is if you set a height on the parent element, any overflow will be...well, hidden. I found this when creating a menu with floated list items - the submenus would not appear.

                  清除元素 - 而不是換行符,我會使用 height: 0; 的 divclear: both; 因為它不會在下面產生間隙.這是一種更可靠的方法,唯一的缺點是標記中的額外元素.

                  Clearing element - rather than a line break, I would use a div with height: 0; clear: both; since it won't create a gap below. This is a more solid method, the only disadvantage being an extra element in the markup.

                  浮動父元素 - 根據我的經驗,有太多情況您不想浮動父元素,所以我會避免它.

                  Float the parent - in my experience there are too many situations where you don't want to float the parent element, so I would avoid it.

                  你也可以使用生成內容的方法:

                  You can also use the generated content method:

                  #parent:after {
                    content: ".";
                    visibility: hidden;
                    clear: both;
                  }
                  

                  這樣可以節省標記中額外元素的需要,但在 IE7 及更低版本中不起作用.

                  This saves the need for an extra element in the markup, but it won't work in IE7 and below.

                  使用內聯塊 - 剛剛記住了這個方法.不要浮動這兩列,而是將它們設置為 display: inline-block ,它們將并排顯示:

                  Use inline blocks - just remembered this method. Instead of floating the two columns, set them to display: inline-block and they will appear side-by-side:

                  .child {
                    display: inline-block;
                    vertical-align: top;
                  }
                  

                  使用此方法您必須記住的唯一一件事是,如果一個塊的結束標記和另一個塊的開始標記之間有空格,則列之間會出現一個空格(其大小取決于字體,因此很難來衡量).只要你這樣做 ...</div><div id=... 那么這個方法就可以正常工作并且優于浮動元素 IMO.

                  Only thing you must remember with this method is if there is any whitespace between the close tag of one block and the opening tag of another, a space will appear between the columns (the size of which depends on the font so it difficult to gauge). As long as you do ...</div><div id=... then this method works fine and is superior to floating elements IMO.

                  這篇關于浮動子元素:溢出:隱藏或清除:兩者?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Stylesheet not loaded because of MIME-type(由于 MIME 類型而未加載樣式表)
                  CSS3 Transition ( Vendor Prefixes) crashes Safari immediately(CSS3 過渡(供應商前綴)立即使 Safari 崩潰)
                  @font-face crashes IE8(@font-face 讓 IE8 崩潰)
                  Remove formatting from a contentEditable div(從 contentEditable div 中刪除格式)
                  What#39;s the difference between lt;taggt;lt;/taggt; and lt;tag /gt; in HTML?(lt;taggt;lt;/taggt; 有什么區別?和lt;標簽/gt;在 HTML 中?)
                  jquery limit text by length(jquery按長度限制文本)
                  <i id='24eEK'><tr id='24eEK'><dt id='24eEK'><q id='24eEK'><span id='24eEK'><b id='24eEK'><form id='24eEK'><ins id='24eEK'></ins><ul id='24eEK'></ul><sub id='24eEK'></sub></form><legend id='24eEK'></legend><bdo id='24eEK'><pre id='24eEK'><center id='24eEK'></center></pre></bdo></b><th id='24eEK'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='24eEK'><tfoot id='24eEK'></tfoot><dl id='24eEK'><fieldset id='24eEK'></fieldset></dl></div>
                1. <tfoot id='24eEK'></tfoot>

                  <legend id='24eEK'><style id='24eEK'><dir id='24eEK'><q id='24eEK'></q></dir></style></legend>

                      <tbody id='24eEK'></tbody>
                    • <bdo id='24eEK'></bdo><ul id='24eEK'></ul>

                            <small id='24eEK'></small><noframes id='24eEK'>

                            主站蜘蛛池模板: 偷拍自拍网 | 中文字幕日韩欧美 | 日本高清aⅴ毛片免费 | 久久久久久久久久久久久九 | 精品日韩一区二区 | 国产成人精品一区二区三区四区 | 日韩超碰在线 | 亚洲成人一区二区 | 国内毛片毛片毛片毛片 | 久久69精品久久久久久久电影好 | 日韩国产在线 | 黄色在线观看 | 中文字幕一区在线 | 日本一区二区三区在线观看 | 婷婷久久一区 | 欧美久久久久久久久中文字幕 | 国产一区二区成人 | 成人免费在线视频 | 国产日本精品视频 | 久久精品aaa | 欧美日韩综合精品 | 韩国欧洲一级毛片 | 久久伊人免费视频 | 在线免费观看黄a | 日日操夜夜操天天操 | 在线一区 | 久久国产一区二区 | 欧美久操网 | 欧美精品一级 | 成人精品一区二区户外勾搭野战 | 国产精品一区二区三 | 欧美一区免费 | 2022国产精品 | 91免费在线播放 | 亚洲午夜精品视频 | 青青艹在线视频 | 青青草av在线播放 | 精品国产乱码久久久久久老虎 | 一区二区三区四区不卡 | 精品国产一区二区在线 | 久久久久久久夜 |