03-css的样式使用

image.png

<html>
    <head>
        <meta charset="utf-8">
        <title>css的样式使用</title>
        <!--申明css代码域-->
        <style type="text/css">
        /*添加网页背景图*/
        body{
            background-image:url(img/2.jpg);/*添加背景图片*/
                background-repeat: no-repeat;/*设置图片不重复*/
                background-size: cover;/*设置图片平铺*/
        }
        /*使用标签选择器*/
            table{
                
            }
            /*设置table的行高*/
            tr{
                height: 40px;
            }
            /*设置td*/
            td{
                width:100px;/*设置宽*/
                border :solid 1px red;/*添加边框及其颜色和大小*/
                border-radius: 10px;/*设置边框的角度*/
                background-color: orange;/*设置背景颜色*/
                text-align: center;/*设置文本位置*/
                color: gray;/*设置文本颜色*/
                font-weight: bold;/*设置文本加粗*/
                letter-spacing: 5px;/*设置字体间距*/
                
                
            }
/*-----------------------------------------------------------------------------------*/
                ul{
                    background-color:gray ;
                    height: 50px;
                }
                li{
                    list-style-type: none ;/*去除li的标识符*/
                    /*display: inline;*/
                    float: left;/*设置菜单左悬浮*/
                }
                li a{
                    color:black;
                    text-decoration: none;/*设置超链接去除下划线*/
                    font-weight: bold;
                    font-size: 20px;
                    margin-left: 30px; /*间距*/
                    position: relative;
                    top:10px;
                }
                
        </style>
    </head>
    <body>
        <h3>css的样式使用</h3>
        <hr />
        <table>
            <tr>
                <td>姓名</td>
                <td>性别</td>
                <td>爱好</td>
            </tr>
            <tr>
                <td>张三</td>
                <td>男</td>
                <td>唱歌</td>
            </tr>
            <tr>
                <td>李四</td>
                <td>男</td>
                <td>跳舞</td>
            </tr>
        </table>
        <hr />
        <ul>
            <li><a href="https://baike.baidu.com/item/%E7%8C%AA/147315?fr=aladdin" target="_blank">我的简介</a></li>
            <li><a href="https://www.bilibili.com/video/av28777352" target="_blank">我的作品</a></li>
            <li><a href="https://pixabay.com/photos/piglet-small-pigs-mini-cute-sweet-4083870/" target="_blank">我的照片</a></li>
            <li><a href="https://www.jianshu.com/u/212d4f41d2be" target="_blank">我的博客</a></li>
        </ul>
    </body>
</html>

©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容