【HTML&CSS】搜狐頁面代碼編寫

来源:https://www.cnblogs.com/xiaofu007/archive/2018/10/28/9867796.html
-Advertisement-
Play Games

看完一整本書,結果寫不出什麼東西,按書上教程來,基本能把例子完成個七七八八,可是用padding還是margin完全整不清……,而且只要結構一複雜,元素就各種不受控制。 沒辦法 找來韓順平老師的視頻(沒錯,就是在網上不知道怎麼搞來的) 看完老師講完整個html&CSS部分2,終於把這個內容吃透了。 ...


<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>搜狐首頁</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="Shortcut Icon" href="./META-INF/images/souhulogo.png" />
    <link rel="stylesheet" href="./sohu.css">
</head>

<body>
    <div class="top">
        <div class="logo">
            <div class="logoimg">
                圖標
            </div>
            <div class="dapp">
                下載app
            </div>
        </div>
    </div>
    <div class="mast">
        <!-- 第一部分 -->
        <div class="sousuo">
            <div class="sousuo1">
                搜索1
            </div>
            <div class="sousuo2">
                搜索2
            </div>
        </div>
        <!-- 第二部分 -->
        <div class="toutiaolianjie">
            頭條鏈接
        </div>
        <!-- 第三部分 -->
        <div class="guanggaolan">
            <div class="guanggaolan1">
                廣告1
            </div>
            <div class="guanggaolan2">
                廣告2
            </div>
        </div>
        <!-- 第四部分 -->
        <div class="xinwen">
            <!-- 第四部分第一列  圖片新聞-->
            <div class="imgxinwen">
                <div class="bigimg">
                    大圖新聞
                </div>
                <!-- 小圖新聞 -->
                <div class="smallimg">
                    <table class="smallimgtable">
                        <tr>
                            <td>
                                <div class="smallimgall smallimg1">
                                    小圖標題新聞1
                                </div>
                            </td>
                            <td>
                                <div class="smallimgall smallimg2">
                                    小圖標題新聞2
                                </div>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <div class="smallimgall smallimg3">
                                    小圖標題新聞3
                                </div>
                            </td>
                            <td>
                                <div class="smallimgall smallimg4">
                                    小圖標題新聞4
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!--  視頻標題欄 -->
                <div class="shipinbiaoti">
                    視頻標題欄
                </div>
                <!--  視頻 -->
                <div class="shipin1">
                    大視頻
                </div>
                <div class="leftnews1">
                    文字新聞
                </div>
                <div class="shipin2">
                    視頻2
                </div>
                <div class="leftnews2">
                    文字新聞2
                </div>
            </div>
            <!-- 第四部分第二列  中間部分文字新聞-->
            <div class="textxinwen">
                <div class="textnewsall textnews1">
                    新聞標題8條
                </div>
                <div class="textnewsall textnews2">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews3">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews4">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews5">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews6">
                    新聞標題1條
                </div>
            </div>
            <!-- 第四部分第三列 右側內容標題-->
            <div class="biaotilan">

                <div class="right1">
                    換一換廣告
                </div>
                <div class="right2">
                    圖片廣告
                </div>
                <div class="right3">
                    24小時熱文
                </div>
            </div>
        </div>
    </div>
    <!-- 第五部分 -->

    <script src="" async defer></script>
</body>

</html>

 

看完一整本書,結果寫不出什麼東西,按書上教程來,基本能把例子完成個七七八八,可是用padding還是margin完全整不清……,而且只要結構一複雜,元素就各種不受控制。

沒辦法 找來韓順平老師的視頻(沒錯,就是在網上不知道怎麼搞來的)

看完老師講完整個html&CSS部分2,終於把這個內容吃透了。

韓順平老師講課最後一個用例就是還原搜狐門戶網站的首頁HTML和css部分,雖然視頻中他的是n年前的網站頁面,蛋根本不妨礙我完成完成現在版本的搜狐頁面 。

 第一次看完視頻,寫的亂七八糟,很多東西擺不到應有的地方,沒辦法,在瀏覽器按f12鍵,查看人家的源代碼,發現很多東西用了ul和li的組合插入文字,圖片,而是原來HTML和css組合也沒這麼難,大神的代碼實現也是很平凡很淡。

很多收穫記手機上,回頭整理髮這裡。

我做出來的效果圖是這樣的:

代碼如下:

<!DOCTYPE html>
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>搜狐首頁</title>
    <meta name="description" content="">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="Shortcut Icon" href="./META-INF/images/souhulogo.png" />
    <link rel="stylesheet" href="./sohu.css">
</head>

<body>
    <div class="top">
        <div class="logo">
            <div class="logoimg">
                圖標
            </div>
            <div class="dapp">
                下載app
            </div>
        </div>
    </div>
    <div class="mast">
        <!-- 第一部分 -->
        <div class="sousuo">
            <div class="sousuo1">
                搜索1
            </div>
            <div class="sousuo2">
                搜索2
            </div>
        </div>
        <!-- 第二部分 -->
        <div class="toutiaolianjie">
            頭條鏈接
        </div>
        <!-- 第三部分 -->
        <div class="guanggaolan">
            <div class="guanggaolan1">
                廣告1
            </div>
            <div class="guanggaolan2">
                廣告2
            </div>
        </div>
        <!-- 第四部分 -->
        <div class="xinwen">
            <!-- 第四部分第一列  圖片新聞-->
            <div class="imgxinwen">
                <div class="bigimg">
                    大圖新聞
                </div>
                <!-- 小圖新聞 -->
                <div class="smallimg">
                    <table class="smallimgtable">
                        <tr>
                            <td>
                                <div class="smallimgall smallimg1">
                                    小圖標題新聞1
                                </div>
                            </td>
                            <td>
                                <div class="smallimgall smallimg2">
                                    小圖標題新聞2
                                </div>
                            </td>
                        </tr>
                        <tr>
                            <td>
                                <div class="smallimgall smallimg3">
                                    小圖標題新聞3
                                </div>
                            </td>
                            <td>
                                <div class="smallimgall smallimg4">
                                    小圖標題新聞4
                                </div>
                            </td>
                        </tr>
                    </table>
                </div>
                <!--  視頻標題欄 -->
                <div class="shipinbiaoti">
                    視頻標題欄
                </div>
                <!--  視頻 -->
                <div class="shipin1">
                    大視頻
                </div>
                <div class="leftnews1">
                    文字新聞
                </div>
                <div class="shipin2">
                    視頻2
                </div>
                <div class="leftnews2">
                    文字新聞2
                </div>
            </div>
            <!-- 第四部分第二列  中間部分文字新聞-->
            <div class="textxinwen">
                <div class="textnewsall textnews1">
                    新聞標題8條
                </div>
                <div class="textnewsall textnews2">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews3">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews4">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews5">
                    新聞標題6條
                </div>
                <div class="textnewsall textnews6">
                    新聞標題1條
                </div>
            </div>
            <!-- 第四部分第三列 右側內容標題-->
            <div class="biaotilan">

                <div class="right1">
                    換一換廣告
                </div>
                <div class="right2">
                    圖片廣告
                </div>
                <div class="right3">
                    24小時熱文
                </div>
            </div>
        </div>
    </div>
    <!-- 第五部分 -->

    <script src="" async defer></script>
</body>

</html>

css(html文件和css文件放同一個目錄層下):

body {
  margin: 0 auto;
  border: 1px solid red;
}
.mast {
  margin: 0 auto;
  width: 1180px;
  background-color: rgb(88, 88, 88);
}
.top {
  background-color: #222222;
  height: 30px;
}

.logo {
  width: 1180px;
  margin: 0 auto;
  background-color: yellow;
}

/* 從這裡開始一律採用左/右浮動 */
.logoimg {
  float: left;
  width: 145px;
  height: 95px;
  background-color: #25c058;
}
.dapp {
  float: right;
  width: 160px;
  background-color: yellow;
}

.sousuo{
    float: right;
    width: 940px;
    height: 40px;
    background-color: #174b12;
    margin-top: 25px;
}
.sousuo1{
    float: left;
    width: 550px;
    height: 40px;
    background-color: rgb(0, 255, 98);
}
.sousuo2{
    float: right;
    width: 300px;
    height: 40px;
    background-color: rgb(10, 30, 92);
}

.toutiaolianjie{
    float: left;
    width: 1180px;
    height: 75px;
    background-color: #c9141d;
    margin-top: 26px;
}
.guanggaolan{
    float: left;
    width: 1180px;
    height: 100px;
    background-color: #DEE1EA;
    margin-top: 20px;
}

.guanggaolan1{
    float: left;
    width: 1030px;
    height: 100px;
    background-color: rgb(99, 75, 155);
}
.guanggaolan2{
    float: right;
    width: 144px;
    height: 100px;
    background-color: rgb(10, 30, 92);
}
.xinwen{
    float: left;
    width: 1180px;
    height: 1150px;
    background-color: rgb(71, 71, 71);
    margin-top: 20px;
}

.imgxinwen{
    float: left;
    width: 320px;
    height: 1120px;
    background-color: rgb(255, 123, 123);
}

.bigimg{
    float: left;
    width: 320px;
    height: 213px;
    background-color: rgb(251, 0, 0);
}

.smallimg{
    float: left;
    width: 320px;
    height: 320px;
    background-color: rgb(251, 0, 0);
    margin-top: 10px;
}

.smallimgtable{
    float: left;
    width: 320px;
    height: 320px;
    background-color: rgb(0, 153, 255);
}

.smallimgall{
    float: left;
    width: 155px;
    height: 155px;
    background-color: rgb(163, 163, 163);
}

.shipinbiaoti{
    float: left;
    width: 320px;
    height: 20px;
    background-color: rgb(163, 163, 163);
    margin-top: 30px;
}

.shipin1{
    float: left;
    width: 320px;
    height: 160px;
    background-color: rgb(123, 255, 0);
    margin-top: 12px;
}

.leftnews1{
    float: left;
    width: 320px;
    height: 70px;
    background-color: rgb(55, 0, 255);
    margin-top: 15px;
}
.shipin2{
    float: left;
    width: 320px;
    height: 104px;
    background-color: rgb(123, 255, 0);
    margin-top: 30px;
}

.leftnews2{
    float: left;
    width: 320px;
    height: 127px;
    background-color: rgb(230, 54, 186);
    margin-top: 15px;
}

.textxinwen{
    float: left;
    width: 440px;
    height: 1120px;
    background-color: rgb(30, 255, 49);
    margin-left: 25px;
}

.textnewsall{
    float: left;
    background-color: rgb(0, 202, 185);
}
.textnews1{
    float: left;
    width: 440px;
    height: 225px;
    background-color: rgb(0, 202, 185);
}
.textnews1,.textnews2,.textnews3,.textnews4,.textnews5{
    float: left;
    width: 440px;
    height: 180px;
    background-color: rgb(177, 106, 167);
    margin-top: 30px;
}

.textnews6{
    float: left;
    width: 440px;
    height: 20px;
    background-color: rgb(177, 106, 167);
    margin-top: 30px;
}

.biaotilan{
    float: right;
    width: 300px;
    height: 1120px;
    background-color: rgb(72, 52, 255);
}

.right1{
    float: left;
    width: 300px;
    height: 450px;
    background-color: rgb(217, 255, 0);
}

.right2{
    float: left;
    width: 300px;
    height: 250px;
    background-color: rgb(217, 255, 0);
    margin-top: 12px;
}
.right3{
    float: left;
    width: 300px;
    height: 414px;
    background-color: rgb(217, 255, 0);
    margin-top: 10px;
}

 腦袋要炸了,繼續完善!


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • Android json支持五種數據類型 String / int(float)/bool / null / object 今天說 object : ...
  • 歡迎大家前往 "騰訊雲+社區" ,獲取更多騰訊海量技術實踐乾貨哦~ 本文由 "elson" 發表於 "雲+社區專欄" 目前在不考慮IE以及低端安卓機(4.3 )的相容下,已經可以放心使用flex進行佈局了。什麼是flex佈局以及它的好處,這裡就不再贅述。 在這篇文章里,想說說flex佈局的屬性語法及 ...
  • 準備 工具:HBuilder 一、全屏設置,不顯示系統狀態欄 這裡所說的系統狀態欄就是包括了:信號、運營商、電量等信息手機屏幕最頂部信息。 全屏並非狀態欄透明或變色,而是沒有狀態欄,也就是看不見電量、信號那條了,部分項目需要這樣的場景。 全屏設置方法: 新建一個wap2app項目並完成各項配置後,打 ...
  • Android預設的Toast太醜了,我們來封裝一個花里胡哨的Toast吧,就叫ColoredToast。 Github:https://github.com/imcloudfloating/DesignApp 效果: Toast有一個setView方法,通過它我們可以設置自定義的佈局,這裡我只是加 ...
  • C/S架構(Client/Server,即客戶機/伺服器模式)分為客戶機和伺服器兩層:第一層是在客戶機系統上結合了表示與業務邏輯,第二層是通過網路結合了資料庫伺服器。簡單的說就是第一層是用戶表示層,第二層是資料庫層。客戶端和伺服器直接相連,這兩個組成部分都承擔著重要的角色。 Android內核是基於 ...
  • 前面已經封裝了很多常用、基礎的組件了: "base module" , 包括了: crash 處理 常用工具類 apk 升級處理 log 組件 logcat 採集 ftp 文件上傳 blur 高斯模糊 fresco 圖片處理 等等 那麼,今天繼續再來封裝一個網路組件,基於 "volley" 的二次封 ...
  • Application是Android的又一大組件,在App運行過程中,有且僅有一個Application對象貫穿應用的整個生命周期,所以適合在Application中保存應用運行時的全局變數。而開展該工作的基礎,是必須獲得Application對象的唯一實例,也就是將Application單例化。 ...
  • 元素分類: 1.行級元素:內聯元素 inline 特征:內容決定元素所占位置,不可以通過CSS改變寬高 span strong em a del 2.塊級元素:block特征:獨占一行,可以通過CSS改變寬高 div p ul li ol form address 3.行級塊元素:inline-bl ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...