编程作业-2017.1.20

这次又留了两道编程题(¬ ︿ ¬)
①用三种方法使div元素并列摆放
嗯,相信看过视频的人都能想到这三种方法就是:

  • 浮动法
  • 内联块法(inline-block)
  • 定位法
    代码↓↓↓
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>div并列——浮点</title>
<style>
div{
       width:200px;
       height:200px;
       background-color: red;
       margin-left: 10px;
       float: left;
   }
</style>
</head>
<body>
    <div>1</div>
    <div>2</div>
    <div>3</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>div并列——内联块</title>
<style>
div{
       width:200px;
       height:200px;
       background-color: red;
       display: inline-block;
   }
    </style>
</head>
<body>
    <div>1</div>
    <div>2</div>
    <div>3</div>
</body>
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
    <title>div并列——定位1</title>
    <style>
        div{background:red;height:200px;width:200px;}
.div2{position:relative;left:210px;bottom:200px;}
.div3{position:relative;left:420px;bottom:400px;}
    </style>
</head>
<body>
    <div class="div1">1</div>
    <div class="div2">2</div>
    <div class="div3">3</div>
</body>  
</html>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>并列——定位2</title>
<style>
    body{margin: 0;}
div{
     width: 200px;
    height:200px;
       }
    .div1{
        background-color: yellow;
    }
    .div2{
        background-color: blue;
        position: absolute;
        left: 200px;
        top: 0px;}
    .div3{
        background-color: green;
        position: absolute;
        left: 400px;
        top:0px;
    }
       </style>
</head>
<body>
    <div class="div1">div1</div>
    <div class="div2">div2</div>
    <div class="div3">div3</div>
</body>
</html>

至于为什么我写了四种呢,就是我把position写了两种形式罢了...
②做一个万恶的新闻表格
这个真心是想了很久,首先要把它分成三块去考虑,头部中的top是我用截图截下来的😁,中间的照片的阴影很难处理,最后还要进行z-index处理,尾部是由无序排列组成的,总之就是很多层套在一起,我知道我的方法很麻烦,可在麻烦后总能学到一些东西,这才是学习的意义所在啊...
先上效果图吧!

屏幕截图(76).png
屏幕截图(77).png

似乎还可以的样子有没有!注意:前方高能!
↓↓↓

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>香菇</title>
<style>
    *{
        margin:0;
        padding:0;
    }
        
    .box{
        
        width:226px;
        height: 1130px;
        background-color: #fcfafb;
        margin: 100px auto;
        padding:20px 20px 15px 20px;
    
        
        
    }
    .title{
        height: 89px;
        background: url(../21日编程2所需图片/top.jpg) no-repeat;
    }
    .top1{
        height: 40px;
        width: 226px;
        padding-left: 30px;
        font : light 20px/20px "Microsoft YaHei UI";
        color: #000;
    }
    .top21{
            padding: 10px 27px 8px 30px;
            border: 1px solid #ccc;
            border-bottom: none; 
           
            }
    .top22{
            padding: 10px 19px 8px 19px;
            border-bottom: 1px solid #ccc;
           
            }
    .image{
        height: 891px;width: 226px;
    }
    .image1{
        height: 160px;
        margin-bottom: 20px;
    }
    .img1{
        position:relative;
        width=226px; height=160px;}
    .ms11{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 226px;
        height: 26px;
        background: #000;
        opacity: 0.6;
        color: #fff;
        font-family: Microsoft YaHei UI;
        font-size: 11px;
        line-height: 26px;
        text-indent: 30px;
            
    }
    .ms1{
        position: absolute;
        bottom: 0;
        left: 0;
        height: 26px;
        width: 20px;
        background: #e2291c;
        z-index: 1;
        line-height: 26px;
        text-align: center;
        
        
    }
    .image2{
        height: 160px;
        margin-bottom: 20px;
    }
    .img2{
        position:relative;
        width=226px; height=160px;}
    .ms22{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 226px;
        height: 26px;
        background: #000;
        opacity: 0.6;
        color: #fff;
        font-family: Microsoft YaHei UI;
        font-size: 11px;
        line-height: 26px;
        text-indent: 30px;
            
    }
    .ms2{
        position: absolute;
        bottom: 0;
        left: 0;
        height: 26px;
        width: 20px;
        background: #e2291c;
        z-index: 1;
        line-height: 26px;
        text-align: center;
    }
    .image3{
        height: 160px;
        margin-bottom: 20px;
    }
    .img3{
        position:relative;
        width=226px; height=160px;}
    .ms33{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 226px;
        height: 26px;
        background: #000;
        opacity: 0.6;
        color: #fff;
        font-family: Microsoft YaHei UI;
        font-size: 11px;
        line-height: 26px;
        text-indent: 30px;
            
    }
    .ms3{
        position: absolute;
        bottom: 0;
        left: 0;
        height: 26px;
        width: 20px;
        background: #e2291c;
        z-index: 1;
        line-height: 26px;
        text-align: center;}
    .image4{
        height: 160px;
        margin-bottom: 20px;
    }
    .img4{
        position:relative;
        width=226px; height=160px;}
    .ms44{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 226px;
        height: 26px;
        background: #000;
        opacity: 0.6;
        color: #fff;
        font-family: Microsoft YaHei UI;
        font-size: 11px;
        line-height: 26px;
        text-indent: 30px;
            
    }
    .ms4{position: absolute;
        bottom: 0;
        left: 0;
        height: 26px;
        width: 20px;
        background: #e2291c;
        z-index: 1;
        line-height: 26px;
        text-align: center;}
    .image5{
        height: 160px;
        margin-bottom: 11px;
    }
    .img5{
        position:relative;
        width=226px; height=160px;}
    .ms55{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 226px;
        height: 26px;
        background: #000;
        opacity: 0.6;
        color: #fff;
        font-family: Microsoft YaHei UI;
        font-size: 11px;
        line-height: 26px;
        text-indent: 30px;
            
    }
    .ms5{
        position: absolute;
        bottom: 0;
        left: 0;
        height: 26px;
        width: 20px;
        background: #e2291c;
        z-index: 1;
        line-height: 26px;
        text-align: center;}
    .table{
        height: 150px;
        margin-bottom: 15px;
    }
    .box2{
        line-height: 30px;
    }
    li{
        list-style: none;
        line-height: 1px;
        font-size: 12px;
        font-family: Microsoft YaHei UI;
        font-weight:Light;
        padding-left: 10px;
        
    }
    a{
        text-decoration:none;
        color: #404646;
        
        
    }
    .six{
        position: relative;
        left: -9px;
        top: 10px;
        display:inline;
    }
    .seven{
        position: relative;
        left: -9px;
        top: 10px;
        display:inline;
    }
    .eight{
        position: relative;
        left: -9px;
        top: 10px;
        display:inline;
    }
    .nine{
        position: relative;
        left: -9px;
        top: 10px;
        display:inline;
    }
    .ten{
        position: relative;
        left: -9px;
        top: 10px;
        display:inline;
    }
    </style>
</head>

<body>
<div class="box">
    <div class="title">
        <div class="top"></div>
        <div class="top1">排行榜</div>
        <span class="top21">最热排行</span><span class="top22">新课上线</span>
    </div>
    <div class="image">
        <div class="image1">
                  <div class="img1">![](../21日编程2所需图片/image-1.jpg)
                  <span class="ms1">1</span>
                  <span class="ms11">张小龙:微信四大价值观</span>
                  </div>
            <!--![](../21日编程2所需图片/2017-01-21_182940.jpg)-->
        </div>
        <div class="image2">
                  <div class="img2">
                        ![](../21日编程2所需图片/image-2.jpg)
                  <span class="ms2">2</span>
                  <span class="ms22">刘超:互联网新时代需要什么样...</span>
                  </div>
        </div>
        <div class="image3">
                  <div class="img3">
                        ![](../21日编程2所需图片/image-3.jpg)
                  <span class="ms3">3</span>
                  <span class="ms33">马化腾:腾讯将专注于做互联网...</span>
                  </div>
        </div>
        <div class="image4">
                  <div class="img4">
                        ![](../21日编程2所需图片/image-4.jpg)
                  <span class="ms4">4</span>
                  <span class="ms44">IT领袖峰会圆桌会谈:互联网下...</span>
                  </div>
        </div>
        <div class="image5">
                  <div class="img5">
                        ![](../21日编程2所需图片/image-5.jpg)
                  <span class="ms5">5</span>
                  <span class="ms55">微信支付对实体商业的价值几何?</span>
                  </div>
            
        </div>
        
        </div>
<div class="table">
    <ul class ="box2">
        <li><a href="###"><div class="six">![](../21日编程2所需图片/six.jpg)</div>张小龙:小程序正式发布,开...</a></li>
        <li><a href="###"><div class="seven">![](../21日编程2所需图片/seven.jpg)</div>马化腾:通向互联网未来的七...</a></li>
        <li><a href="###"><div class="eight">![](../21日编程2所需图片/eight.jpg)</div>马化腾:腾讯现在只做两件事</a></li>
        <li><a href="###"><div class="nine">![](../21日编程2所需图片/nine.jpg)</div>使用UE4制作VR内容的优化</a></li>
        <li><a href="###"><div class="ten">![](../21日编程2所需图片/ten.jpg)</div>何凌南:谣言在想什么</a></li>
        <!--三个#是不进行刷新,一个#是刷新-->
    </ul>
        
        
</div>
</div>
</body>
</html>

百度云链接:http://pan.baidu.com/s/1nvsHArB 密码:xwfo
我什么也不想说了我只想睡觉😂
——来自于一个找不到好方法写代码的蠢boy

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,588评论 6 496
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,456评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,146评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,387评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,481评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,510评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,522评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,296评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,745评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,039评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,202评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,901评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,538评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,165评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,415评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,081评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,085评论 2 352

推荐阅读更多精彩内容

  • 各种纯css图标 CSS3可以实现很多漂亮的图形,我收集了32种图形,在下面列出。直接用CSS3画出这些图形,要比...
    剑残阅读 9,528评论 0 8
  • 第三次作业 1.简答作业1内联元素如何转化成为块元素 diplay:block; 2元素类型有哪些?他们的特征分别...
    下了南城阅读 502评论 0 0
  • 一、浮动float 让原来的元素,可以脱离正常的文档流,实现左右排列,不设置宽度就是最小宽度。 float 其实是...
    Mitchell阅读 474评论 0 1
  • 内联元素如何转化为块元素?*嗯,直接转换即可,代码如下: * 内联元素变为块元素 元素类型有哪些?他们的特征分别是...
    黑猫乄阅读 243评论 0 0
  • 《平凡的世界》是我读完的第一部小说,读的过程中一直有种莫名的感动涌上心头,或许被人物吸引、或许被情节触动、亦或许爱...
    布朗熊先森阅读 325评论 0 0