真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何使用Bootstrap實(shí)現(xiàn)CSS3價(jià)格表

這篇文章給大家分享的是有關(guān)如何使用Bootstrap實(shí)現(xiàn)CSS3價(jià)格表的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

專業(yè)成都網(wǎng)站建設(shè)公司,做排名好的好網(wǎng)站,排在同行前面,為您帶來客戶和效益!創(chuàng)新互聯(lián)建站為您提供成都網(wǎng)站建設(shè),五站合一網(wǎng)站設(shè)計(jì)制作,服務(wù)好的網(wǎng)站設(shè)計(jì)公司,成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、外貿(mào)營銷網(wǎng)站建設(shè)負(fù)責(zé)任的成都網(wǎng)站制作公司!

先來看效果圖

如何使用Bootstrap實(shí)現(xiàn)CSS3價(jià)格表

查看演示 下載源碼

首先在頁面中引入bootstrap.min.css文件,這里我用官方的cdn資源,你也可以下載到本地使用。

該css3價(jià)格表的HTML結(jié)構(gòu)如下:

 
     
         
             
                Standard 
                 
                    per month 
                     
                        $ 
                        10 
                        99 
                     
                
                                        
  • 50GB Disk Space
  •                       
  • 50 Email Accounts
  •                       
  • 50GB Monthly Bandwidth
  •                       
  • 10 Subdomains
  •                       
  • 15 Domains
  •                                     sign up              
              
                                                Business                                        per month                                                $                          20                          99                                                                                
  • 60GB Disk Space
  •                       
  • 60 Email Accounts
  •                       
  • 60GB Monthly Bandwidth
  •                       
  • 15 Subdomains
  •                       
  • 20 Domains
  •                                     sign up                               

    CSS3

    為該價(jià)格表添加下面的CSS樣式來進(jìn)行渲染和美化。

    .pricingTable{ 
        text-align: center; 
        background: #fff; 
        padding: 30px 0; 
    } 
    .pricingTable .title{ 
        font-size: 22px; 
        font-weight: 600; 
        color: #2e282a; 
        text-transform: uppercase; 
        margin: 0 0 30px 0; 
    } 
    .pricingTable .price-value{ 
        padding: 30px 0; 
        background: #ba5289; 
        margin-bottom: 30px; 
        position: relative; 
    } 
    .pricingTable .price-value:before{ 
        content: ""; 
        border-top: 15px solid #fff; 
        border-left: 15px solid transparent; 
        border-right: 15px solid transparent; 
        position: absolute; 
        top: 0; 
        left: 46%; 
    } 
    .pricingTable .month{ 
        display: block; 
        height: 50px; 
        font-size: 15px; 
        font-weight: 900; 
        color: #fff; 
        text-transform: uppercase; 
    } 
    .pricingTable .amount{ 
        display: inline-block; 
        font-size: 50px; 
        color: #fff; 
        position: relative; 
    } 
    .pricingTable .currency{ 
        position: absolute; 
        top: -1px; 
        left: -35px; 
    } 
    .pricingTable .value{ 
        font-size: 20px; 
        position: absolute; 
        top: -11px; 
        right: -27px; 
    } 
    .pricingTable .pricing-content{ 
        padding: 0; 
        margin: 0 0 30px 0; 
        list-style: none; 
    } 
    .pricingTable .pricing-content li{ 
        font-size: 16px; 
        color: #868686; 
        line-height: 35px; 
    } 
    .pricingTable .pricingTable-signup{ 
        display: inline-block; 
        padding: 8px 40px; 
        background: #fca4a7; 
        font-size: 15px; 
        font-weight: 600; 
        color: #fff; 
        text-transform: capitalize; 
        border: 2px solid #fca4a7; 
        border-radius: 30px; 
        transition: all 0.5s ease 0s; 
    } 
    .pricingTable .pricingTable-signup:hover{ 
        background: #fff; 
        color: #fca4a7; 
    } 
    @media only screen and (max-width: 990px){ 
        .pricingTable{ margin-bottom: 30px; } 
    }

    現(xiàn)在你可以打開瀏覽器看看效果了,手機(jī)上效果也不錯(cuò)的。

    感謝各位的閱讀!關(guān)于“如何使用Bootstrap實(shí)現(xiàn)CSS3價(jià)格表”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!


    名稱欄目:如何使用Bootstrap實(shí)現(xiàn)CSS3價(jià)格表
    轉(zhuǎn)載注明:http://weahome.cn/article/ihhcdd.html

    在線咨詢

    微信咨詢

    電話咨詢

    028-86922220(工作日)

    18980820575(7×24)

    提交需求

    返回頂部