html - 用于页眉、节和页脚排列的 CSS

标签 html css header height footer

我有基本的 html 代码:

<header></header>
<main>
<nav></nav>
<section></section>
</main>
<footer></footer>

我需要 css 使页眉在顶部,页脚在底部,导航和页眉和页脚之间的部分,导航在左边,部分在右边。

例如:https://fr.wikipedia.org/

但在主要内容小于屏幕尺寸的情况下,我需要将页脚固定在屏幕底部。

我的 CSS 是这样的:

    header, nav, section, footer {
        padding: 1px 0;
    }

    header {
        background-color: lightcoral;
        text-align: center;
        background: #FF9900 url("/Content/Images/Etoile.png") 5px center no-repeat;
        background-size: 100px;
    }

    main {
        margin: auto;
    }

    nav {
        float: left;
        width: 15%;
        background-color: lightsalmon;
    }

    section {
        float : right;
        width : 85%;
        background-color: lightblue;
    }

    footer {
        background-color: lightgreen;
        text-align: center;
        clear: both;
    }

你能帮帮我吗?

最佳答案

您要做的是创建一个简单的页面布局。你可以看看this resource有关如何执行此操作的一般信息,因为有多种方法。

上述资源中的一个示例是使用 CSS float 属性。它应该足以让您开始使用您的解决方案。

<!DOCTYPE html>
<html>
<head>
<style>
div.container {
    width: 100%;
    border: 1px solid gray;
}

header, footer {
    padding: 1em;
    color: white;
    background-color: black;
    clear: left;
    text-align: center;
}

nav {
    float: left;
    max-width: 160px;
    margin: 0;
    padding: 1em;
}

nav ul {
    list-style-type: none;
    padding: 0;
}
   
nav ul a {
    text-decoration: none;
}

article {
    margin-left: 170px;
    border-left: 1px solid gray;
    padding: 1em;
    overflow: hidden;
}
</style>
</head>
<body>

<div class="container">

<header>
   <h1>City Gallery</h1>
</header>
  
<nav>
  <ul>
    <li><a href="#">London</a></li>
    <li><a href="#">Paris</a></li>
    <li><a href="#">Tokyo</a></li>
  </ul>
</nav>

<article>
  <h1>London</h1>
  <p>London is the capital city of England. It is the most populous city in the  United Kingdom, with a metropolitan area of over 13 million inhabitants.</p>
  <p>Standing on the River Thames, London has been a major settlement for two millennia, its history going back to its founding by the Romans, who named it Londinium.</p>
</article>

<footer>Copyright &copy; W3Schools.com</footer>

</div>

</body>
</html>

关于html - 用于页眉、节和页脚排列的 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44392865/

相关文章:

html - Bootstrap 4 textarea 填充剩余的第二列高度

php - 根据 if 语句显示隐藏的 div 部分

java - java 客户端的 http header 的 useragent 值应该是什么

java - 我可以从失败调用中获取 Azure Cosmos DB header 'x-ms-request-charge' 吗?

jquery - 相对于带有滑动侧边栏的父 Div 的固定位置

javascript - 具有相同网址的多个“赞”按钮

html - CSS 属性顺序的位置是否重要?

html - 具有变量值的 View 中的 div 宽度

html - 应用于按钮的 CSS 在按钮下方留下紫色框

html - 为什么背景图片有时没有覆盖整个页面?