iT邦幫忙

2023 iThome 鐵人賽

DAY 29
0
影片教學

一起來實作響應式網頁設計系列 第 29

一起來實作響應式網頁設計:探究Bootstrap Day29

  • 分享至 

  • xImage
  •  

影片教學

Yes

程式碼重點回顧

<!DOCTYPE html>
<html lang="en">
<head> 
    <!--連結bootstrap css 檔案-->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0", user-scalable="no">
    <title>Bootstrap</title>
    <link rel="stylesheet" href="bootstrap.css">
    
</head>
<body>
    <div class=".container">
        <div class="row">
          <!--根據不同螢幕大小調整網格排版-->
          <div class="col-12 col-sm-6 col-lg-4">
            <!--img-fluid可以調整圖片大小,width=100%,height=auto-->
            <img src="img/dog.png" alt="" class="img-fluid">
          </div>
          <div class="col-12 col-sm-6 col-lg-4">
            <img src="img/dog.png" alt="" class="img-fluid">
          </div>
          <div class="col-12 col-sm-6 col-lg-4">
            <img src="img/dog.png" alt="" class="img-fluid">
          </div>
        </div>
    </div>
    
    <!--連結bootstrap js 檔案-->
    <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>

參考資源

以上是今天的教學,感謝大家觀看。


上一篇
一起來實作響應式網頁設計:To Do List 專案-刪除某一項目 Day28
下一篇
一起來實作響應式網頁設計:用bootstrap的元件打造景點介紹網站 Day30
系列文
一起來實作響應式網頁設計30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言