新浪首页练习

新浪首页练习


<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>新浪首页练习title>
    <style>
        * {
      
            margin: 0;
            padding: 0;
        }

        .nav {
      
            /*与浏览器保持同宽*/
            width: 100%;
            height: 45px;
            background: url(images/nav.png) no-repeat top center;
            /*永远显示在顶部*/
            position: fixed;
            top: 0;
        }

        .content {
      
            /*与浏览器保持同宽*/
            width: 100%;
            height: 8250px;
            background: url(images/content.png) no-repeat top center;
        }

        div img:first-child {
      
            position: fixed;
            left: 0;
            top: 200px;
        }

        div img:last-child {
      
            position: fixed;
            right: 0;
            top: 200px;
        }

        a {
      
            position: fixed;
            right: 10px;
            bottom: 10px;
            width: 50px;
            height: 50px;
            background-color: rgba(0, 0, 0, 0.3);
            /*不要下划线*/
            text-decoration: none;
            /*水平居中*/
            text-align: center;
            /*垂直居中*/
            line-height: 50px;
            color: rgba(53, 50, 54, 0.87);
        }


    style>
head>
<body>
<div class="nav">div>
<div class="content">
    <img src="images/left_ad.png" alt="">
    <img src="images/right_ad.png" alt="">
div>
<a href="#">返回a>
body>
html>
注意点

1.返回采用超链接href=“#”,可以直接返回顶部。

2.两个广告外加顶部和超链接均采用固定定位。

你可能感兴趣的:(CSS3,css)