如何用HTML和css制作一个简单的带有滑动条的网页电子相册实例

超完整的代码+详细注释,适合给小白做的简单的网页电子相册实例
代码:


<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Documenttitle>
    <style>
        /* 清除默认边距 */
        *{
    
            margin: 0;
            padding: 0;
        }
        .box1{
    
            /* 宽度 */
            width: 420px;
            /* 高度 */
            height: 324px;
            /* 背景颜色 */
            background: #666666;
            /* 相对html页面定位 */
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            /* 居中 */
            margin: auto;
            /* 大盒子边框 */
            border: 1px solid #cdcdcd;
        }
        h3{
    
            /* 字体大小 */
            font-size: 18px;
            /* 文本上下居中 */
            line-height: 48px;
            /* 文字颜色 */
            color: #fff;
            /* 文本左右对齐 */
            text-align: center;
            /* 字体不加粗 */
            font-weight: 100;
        }
        .div_l{
    
            width: 280px;
            height: 196px;
            border: 1px solid #ffffff

你可能感兴趣的:(html与css实例,css,html,html5)