第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用 html 和 CSS 導(dǎo)航欄周?chē)倪吘鄦?wèn)題

使用 html 和 CSS 導(dǎo)航欄周?chē)倪吘鄦?wèn)題

GCT1015 2023-09-04 15:43:31
我正在使用 html 和 CSS 創(chuàng)建一個(gè)演示作品集(仍處于最初階段)。盡管我已在樣式表上將全局邊距設(shè)置為 0,但我的導(dǎo)航欄各邊都有邊距,但我遇到了問(wèn)題。我的目標(biāo)是讓導(dǎo)航欄跨越視口的寬度,周?chē)鷽](méi)有邊距(底部除外)。我以前沒(méi)有遇到過(guò)這個(gè)問(wèn)題,因此非常感謝您的任何建議!我的HTML:<!DOCTYPE html><html>    <head>        <link rel="stylsheet" type="text/css" href="Personal Portfolio Stylsheet.css">        <title>Personal Portfolio</title>    </head>    <header>        <nav id="navbar">            <ul type="none">                <li href="#About">About</li>                <li href='#Work'>Work</li>                <li href='#Contact'>Contact</li>            </ul>        </nav>    </header>    <body>        <section id="welcome-section">            <h1>Liam McBride</h1>            <h2><i>Web Developer</i></h2>        </section>        <section id="projects">            <h1>Portfolio</h1>        </section>        <section id="contact-info">            <h1>Reach out to me at any of the following links:</h1>        </section>    </body></html>和CSS:@import url('https://fonts.googleapis.com/css?family=EB+Garamond|Roboto&display=swap') /* To call fonts, use the following:  font-family: 'EB Garamond', serif;font-family: 'Roboto', sans-serif; */*{    margin: 0;    padding: 0;    box-sizing: border-box;}/* Box sizing border box means that padding and border width are included in the total width for all elements. */:root {    --color-off-white: #fff6f6;    --color-aluminum: #c4c4c4;     --color-charcoal: #494646;    --color-black: #1f1919;    --color-navy: #6385b1;    --color-deep-water: #1a3861;}#navbar{  width: 100%;  background-color: var(--color-navy);  border-bottom: 0.1em solid;  margin: 0 0 1em 0;}nav>ul {  font-family: 'EB Garamond', serif;  font-weight: bold;  font-size:1.15em;  display: flex;  justify-content: space-around;  padding: 0.5em 0.7em 0.1em 50em;}header {  position: relative;  padding: 0;}
查看完整描述

1 回答

?
瀟瀟雨雨

TA貢獻(xiàn)1833條經(jīng)驗(yàn) 獲得超4個(gè)贊

只需將 body 和 nav>ul margin 設(shè)置為 0


@import url('https://fonts.googleapis.com/css?family=EB+Garamond|Roboto&display=swap')


 /* To call fonts, use the following:

  font-family: 'EB Garamond', serif;

font-family: 'Roboto', sans-serif; */

*{

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


body{

margin:0;}

/* Box sizing border box means that padding and border width are included in the total width for all elements. */


:root {

    --color-off-white: #fff6f6;

    --color-aluminum: #c4c4c4; 

    --color-charcoal: #494646;

    --color-black: #1f1919;

    --color-navy: #6385b1;

    --color-deep-water: #1a3861;

}


#navbar{

  width: 100%;

  background-color: var(--color-navy);

  border-bottom: 0.1em solid;

  margin: 0 0 1em 0;

}


nav>ul {

  font-family: 'EB Garamond', serif;

  font-weight: bold;

  font-size:1.15em;

  display: flex;

  justify-content: space-around;

  padding: 0.5em 0.7em 0.1em 50em;

  margin:0;

}


header {

  position: relative;

  padding: 0;

}

<html>

    <head>

        <link rel="stylsheet" type="text/css" href="Personal Portfolio Stylsheet.css">

        <title>Personal Portfolio</title>

    </head>

    <header>

        <nav id="navbar">

            <ul type="none">

                <li href="#About">About</li>

                <li href='#Work'>Work</li>

                <li href='#Contact'>Contact</li>

            </ul>

        </nav>

    </header>

    <body>

        <section id="welcome-section">

            <h1>Liam McBride</h1>

            <h2><i>Web Developer</i></h2>

        </section>

        <section id="projects">

            <h1>Portfolio</h1>

        </section>

        <section id="contact-info">

            <h1>Reach out to me at any of the following links:</h1>

        </section>

    </body>

</html>


查看完整回答
反對(duì) 回復(fù) 2023-09-04
  • 1 回答
  • 0 關(guān)注
  • 153 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢(xún)優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)