当前位置: 首页 > article >正文

HTML--浮动布局练习

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        /* 整个浏览器页面 */
        html,
        body {
            background-color: #00005d;
            height: 100%;
            margin: 0;
        }

        .page {
            /* 定宽 */
            width: 1100px;
            margin-top: 0;
            margin-bottom: 0;

            margin-right: auto;
            margin-left: auto;

            /* margin:0,auto; 不支持margin的多个属性值,F12显示属性值无效*/
            height: 100%;
        }

        header {
            background-color: #869dc7;
            height: 150px;
            /* 原图像素254*150 */
            background-image: url(images/lighthouselogo.jpg);
            background-repeat: no-repeat;
        }

        h1 {
            color: #00005d;
            font-size: 55px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-weight: bold;
            text-align: center;
            line-height: 150px;
            margin: 0;
        }

        aside {
            background-color: #b3c7e6;
            width: 180px;
            margin: 0;
            /* height: 620px; */
            height: calc(100% - 150px - 50px);
            float: left;
        }

        main {
            background-color: white;
            width: 920px;
            /* height: 620px; */
            height: calc(100% - 150px - 50px);
            float: right;
        }

        h2 {
            color: #90a5cb;
            padding-top: 10px;
            padding-left: 20px;
            font-weight: bold;
            font-size: 25px;
        }

        main p {
            padding-left: 20px;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            font-size: 18px;
        }

        footer {
            background-color: #869dc7;
            height: 50px;
            /* 如果不加clear属性,会受到中间元素float影响移动到上边 */
            clear: both;
            /* 水平居中 */
            text-align: center;
            /* 无法利用margin:0,auto;属性 借助line-height=height   */
            line-height: 50px;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            color: #00005d;
        }
    </style>
</head>

<body>
    <section class="page">
        <header>
            <h1>Lighthouse Island Bistro</h1>
        </header>
        <!-- <div class="middle"> -->
        <aside>
            <ul
                style="list-style: none;font-family: Arial, Helvetica, sans-serif;font-weight: bold;color: white;font-size: 20px;">
                <li style="color: #eae9ea;">Home</li>
                <li>Menu</li>
                <li>Directions</li>
                <li>Contact</li>
            </ul>
        </aside>
        <main>
            <div style="float: right;clear: both;">
                <img src="images/lighthouseisland.jpg" style="padding: 20px;padding-top:40px;height: 400px;">
            </div>
            <h2 style="padding-top: 20px;">Locally Roasted Free-Trade Coffee</h2>
            <p>Indulge in the aroma of freshly ground roast coffee. Specialty drinks are available hot or cold.
            </p>

            <h2>Specialty Pastries</h2>
            <p>Enjoy a selection of our fresh-baked, organic pastries, including fresh-fruit muffins, scones,
                croissants, and cinammon rolls.
            </p>

            <h2>Lunchtime is Anytime</h2>
            <p>Savor delicious wraps and sandwiches on hearty, whole-grain breads with locally-grown salad, fruit,
                and vegetables.
            </p>

            <h2>Panoramic View</h2>
            <p>Take in some scenery! The top of our lighthouse offers a panoramic view of the countryside.
                Challenge your friends to climb our 100-stair tower.
            </p>
        </main>
        <!-- </div> -->
        <footer>Copyright © 2021
        </footer>
    </section>
</body>

</html>

定宽浮动布局,设计页面在整个浏览器页面水平居中位置,浏览器页面缩小时,仍水平居中,出现水平滚动条,显示不到的页面内容可以通过滚动条调节。

已知header高度、footer高度,使得aside的高度处于页面中间,并且不出现垂直滚动条?

cal(相对高度百分比 - 同级别元素高度1 - 同级别元素高度2);

相对高度100%--是相对父元素的高度,要求向上追溯父元素的时候有一个确切的数值(html的高度设置为100%时就是整个浏览器页面高度);另外还需要注意margin等高度,相对高度是相对父元素内容区的高度,所以要排除元素margin、padding等高度影响。 


http://www.kler.cn/a/372178.html

相关文章:

  • typora数学符号
  • SQL,生成指定时间间隔内的事件次序号
  • uniapp对接unipush 1.0 ios/android
  • Cline 3.0发布:从AI编程助手到通用智能体平台的进化
  • FreeSWITCH实现多人电话会议功能
  • ubuntu22.04 nginx配置下载目录,亲测成功
  • unity3d——单例模式,加载单例模式类问题
  • 力姆泰克伺服电动缸的优势有哪些
  • ML2021Spring-hw1(COVID-19 Cases Prediction)
  • 百度SEO分析实用指南 提升网站搜索排名的有效策略
  • unity游戏开发之赛车游戏
  • WEBRTC教程:局域网怎么调试,http://172.19.18.101:8080 ,无法访问摄像头和麦克风,请检查权限
  • 【数据库知识】oracle进阶-逻辑结构深入理解
  • 「Mac畅玩鸿蒙与硬件8」鸿蒙开发环境配置篇8 - 应用依赖与资源管理
  • QT中采用QCustomPlot 实现将buffer中的数据绘制成折线图,并且图形随着数据更新而更新
  • [LeetCode-455]基于贪心算法的分发饼干问题的求解(C语言版)
  • Jenkins 发布 Java 项目:高效持续集成与部署
  • 2024年优秀的天气预测API
  • 微短剧小程序搭建:探索数字叙事新领域
  • 倒计时demo
  • EXPLAIN 针对性优化 SQL 查询
  • 【TS】TypeScript 类型定义之联合类型(union types)和交叉类型(intersection types)
  • Git_码云
  • RabbitMQ如何防止消息丢失及重复消费
  • C++中封装红黑树模拟实现map和set
  • echarts横向左右对比柱状图,两种展示方式(对向、反向)