博客列表 >0704作业

0704作业

A王侨的博客
A王侨的博客原创
2019年07月05日 12:10:48730浏览

html页面的代码:

<html>
    <head>
        <meta charset="UTF-8">
        <link rel="stylesheet" type="text/css" href="0703.css"></link><!---- 外部样式 链接CSS样式    ----->
    </head>
    <body>
            <div>
                <div></div>
            </div>
            <div>
                <ul>
                    <li>今</li>
                    <li>天</li>
                    <li>是</li>
                    <li>7</li>
                    <li>月</li>
                    <li>5</li>
                    <li>日</li>
                    <li>天</li>
                    <li>气</li>
                    <li >热</li>
                </ul>
            </div>
    </body>
</html>

css属性代码:

.box1{
    background-color:red;
    height:200px;
    width:200px;
    padding:20px;
    border:6px dotted green;
    border-radius:50%;
    
}
ul{
    margin:0;
    padding-left:0;
    border:2px solid red;
    width:700px;
}
ul li{
    list-style:none;
    width:40px;
    height:40px;
    background-color:DarkViolet;
    border:2px solid red;
    text-align:center;
    line-height:40px; /*行高*/
    border-radius:50%;/*设置圆角的角度*/
    display:inline-block;/*设置内联块,使多个块元素可以显示在同一行*/   

margin-left:20px;/*设置小球之间距离*/
    
}
.bg-color{
    background-color:LightGreen;
}
ul :nth-last-child(3){  /* 倒数第3个子元素, */  

 background-color:DeepSkyBlue;
    
}
ul :nth-of-type(6){    /* 选择第6个li类型的元素 */

    background-color:green;
}



实例如下:

QQ图片20190705115725.png


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议