• <noscript id="ggggg"><dd id="ggggg"></dd></noscript>
    <small id="ggggg"></small> <sup id="ggggg"></sup>
    <noscript id="ggggg"><dd id="ggggg"></dd></noscript>
    <tfoot id="ggggg"></tfoot>
  • <nav id="ggggg"><cite id="ggggg"></cite></nav>
    <nav id="ggggg"></nav>
    成人黃色A片免费看三更小说,精品人妻av区波多野结衣,亚洲第一极品精品无码,欧美综合区自拍亚洲综合,久久99青青精品免费观看,中文字幕在线中字日韩 ,亚洲国产精品18久久久久久,黄色在线免费观看

    Flex布局-骰子demo

    2018-4-20    seo達(dá)人

    如果您想訂閱本博客內(nèi)容,每天自動發(fā)到您的郵箱中, 請點(diǎn)這里

    最近學(xué)習(xí)了Flex布局,

    以下是阮一峰老師關(guān)于Flex的博客  。在此感謝他讓我get一項(xiàng)新技能!

    Flex語法篇:http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html

    Flex實(shí)戰(zhàn)篇:http://www.ruanyifeng.com/blog/2015/07/flex-examples.html

    1、色子數(shù):1

    思路:讓圓點(diǎn)(即子元素)在橫軸上居中在豎軸上居中,分別用justify-content和align-items

    實(shí)現(xiàn)代碼:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <style> *{  margin:0;  padding:0;  }  body{  background:#000;  }  .main {  width: 200px;  height: 200px;  background: #fff;  border-radius: 20px;  margin: 100px auto;  padding: 25px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box;  box-sizing: border-box;  display: flex;  justify-content: center;  align-items:center;  }  .main >div{  width:40px;  height:40px;  background:#000;  border-radius:40px;  }  </style>
    </head>
    <body>
    <div class="main">
        <div class="item"></div>
    </div>
    </body>
    </html>
    2、色子數(shù):2

    思路:豎列布局且在主軸方向采用justify-content的兩端對齊布局,這樣兩個圓點(diǎn)會在左邊呈現(xiàn),然后采用align-items讓其居中

    實(shí)現(xiàn)代碼:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <style> *{  margin:0;  padding:0;  }  body{  background:#000;  }  .main {  width: 200px;  height: 200px;  background: #fff;  border-radius: 20px;  margin: 100px auto;  padding: 25px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box;  box-sizing: border-box;  display: flex;  flex-direction: column;  justify-content: space-between;  align-items:center;  }  .main >div{  width:40px;  height:40px;  background:#000;  border-radius:40px;  }  </style>
    </head>
    <body>
    <div class="main">
        <div class="item"></div>
        <div class="item"></div>
    </div>
    </body>
    </html>
    3、色子數(shù):3

    思路:用到align-self屬性讓第二個和第三個圓點(diǎn)有自己的屬性設(shè)置,分別在縱軸方向上居中和低端對齊

    實(shí)現(xiàn)代碼:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <style> *{  margin:0;  padding:0;  }  body{  background:#000;  }  .main {  width: 180px;  height: 180px;  background: #fff;  border-radius: 20px;  margin: 100px auto;  padding: 25px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box;  box-sizing: border-box;  display: flex;  }  .main >div{  width:40px;  height:40px;  background:#000;  border-radius:40px;  }  .item:nth-child(2){  align-self:center;  }  .item:nth-child(3){  align-self:flex-end;  }  </style>
    </head>
    <body>
    <div class="main">
        <div class="item"></div>
        <div class="item"></div>
        <div class="item"></div>
    </div>
    </body>
    </html>
    4、色子數(shù):4

    思路:先豎著放兩行圓點(diǎn),每行圓點(diǎn)里橫著放兩個圓點(diǎn),所以最外層父元素設(shè)置align,里面的父元素設(shè)置justify-content

    實(shí)現(xiàn)代碼:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <style> *{  margin:0;  padding:0;  }  body{  background:#000;  }  .main {  width: 180px;  height: 180px;  background: #fff;  border-radius: 20px;  margin: 100px auto;  padding: 25px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box;  box-sizing: border-box;  display: flex;  flex-wrap:wrap;  align-content:space-between;  }  .column >div{  width:40px;  height:40px;  background:#000;  border-radius:40px;  }  .column{  flex-basis:100%;  display:flex;  justify-content: space-between;  }  </style>
    </head>
    <body>
    <div class="main">
        <div class="column">
            <div class="item"></div>
            <div class="item"></div>
        </div>
        <div class="column">
            <div class="item"></div>
            <div class="item"></div>
        </div>
    </div>
    </body>
    </html>
    5、色子數(shù):5

    實(shí)現(xiàn)代碼:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <style> *{  margin:0;  padding:0;  }  body{  background:#000;  }  .main {  width: 180px;  height: 180px;  background: #fff;  border-radius: 20px;  margin: 100px auto;  padding: 25px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box;  box-sizing: border-box;  display: flex;  flex-wrap:wrap;  align-content:space-between;  }  .column > div{  width:40px;  height:40px;  background:#000;  border-radius:40px;  }  .column{  flex-basis:100%;  display:flex;  justify-content: space-between;  }  .column:nth-child(2){  justify-content: center;  }  </style>
    </head>
    <body>
    <div class="main">
        <div class="column">
            <div class="item"></div>
            <div class="item"></div>
        </div>
        <div class="column">
        <div class="item"></div>
        </div>
        <div class="column">
            <div class="item"></div>
            <div class="item"></div>
        </div>
    </div>
    </body>
    </html>
    6、色子數(shù):6

    思路:跟四點(diǎn)的一樣,先豎放三行在每行橫放兩個圓點(diǎn)

    實(shí)現(xiàn)代碼:

    <!DOCTYPE html>
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <style> *{  margin:0;  padding:0;  }  body{  background:#000;  }  .main {  width: 180px;  height: 180px;  background: #fff;  border-radius: 20px;  margin: 100px auto;  padding: 15px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box;  box-sizing: border-box;  display: flex;  align-content:space-between;  flex-wrap:wrap;  }  .column > div{  width:40px;  height:40px;  background:#000;  border-radius:40px;  }  .column{  flex-basis:100%;  display:flex;  justify-content: space-between;  }  </style>
    </head>
    <body>
    <div class="main">
        <div class="column">
            <div class="item"></div>
            <div class="item"></div>
        </div>
        <div class="column">
            <div class="item"></div>
            <div class="item"></div>
        </div>
        <div class="column">
            <div class="item"></div>
            <div class="item"></div>
        </div>
    
    </div>
    </body>
    </html>

    藍(lán)藍(lán)設(shè)計(jì)www.lzhte.cn )是一家專注而深入的界面設(shè)計(jì)公司,為期望卓越的國內(nèi)外企業(yè)提供卓越的UI界面設(shè)計(jì)、BS界面設(shè)計(jì) 、 cs界面設(shè)計(jì) 、 ipad界面設(shè)計(jì) 、 包裝設(shè)計(jì) 、 圖標(biāo)定制 、 用戶體驗(yàn) 、交互設(shè)計(jì)、 網(wǎng)站建設(shè) 平面設(shè)計(jì)服務(wù)

    日歷

    鏈接

    個人資料

    存檔

    主站蜘蛛池模板: 亚洲精品高清中文字幕| 国产成人一区二区三区视频免费蜜| 亚洲精品v欧美精品动漫精品| 国内免费av在线播放| 亚洲高清在线不卡中文字幕网| 国产在线精品乱码一区| 2022Av天堂在线无码| 国产乱码字幕精品高清av| 奇米影视777久久精品亚洲| 日韩欧美综合| 后式大肥臀国产在线| 欧美成人性视频在线播放| 国产精品视频白浆免费视频| 污网站免费观看| 久久美腿丝袜激情综合| 土默特右旗| 免费国产成人午夜精品| 91久久精品日日躁夜夜躁欧美| 国产成人在线观看网站| 久久精品国产福利国产琪琪| 狠狠操网站| 国产三级国产精品国产专区| 久久99国产精品尤物| 成熟女人牲交片20分钟| 国产日产精品久久一区| 风流少妇一区二区三区| 好吊色欧美一区二区三区视频| 无码中文字幕人妻在线一区| 精品无码国产自产野外拍在线| 绥德县| 狠狠综合久久久久尤物| 国产精品成人不卡在线观看| 女性喷液过免费视频| 国产亚洲精久久久久久无码77777 久青草久青草视频在线观看 | av黄色网址| 国产欧美日本| 伊人丁香欧美成A片| 光棍天堂在线手机播放免费| 国内少妇偷人精品视频| 亚洲2019AV无码网站在线| 亚洲国产激情一区二区三区|