前端

CSS美化网页

2019-03-25  本文已影响84人  暖A暖

一、字体样式

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
    p{
        font-family:"宋体";
        font-size:14px;
        }
    .p2{
        font-style:italic;
        }
    .p3{
        font-weight:bold;
        }
    .p4{
        font-family:"微软雅黑";
        }
    .p5{
        font-size:36px;
        }
                    
</style>
</head>
<body>
    <p class="p1">这是第一行(样式为:标签选择器p中的样式)</p>
    <p class="p2">这是第二行(样式为:斜体)</p>
    <p class="p3">这是第三行(样式为:加粗)</p>
    <p class="p4">这是第四行(样式为:字体变成微软雅黑)</p>
    <p class="p5">这是第五行(样式为:字体大小为36px)</p>
</body>
</html>

效果演示图如下所示:


1.png

二、使用CSS排版网页文本

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
.div1{
    width:500px;
    border:1px solid #000;
    padding:20px; 
    }
.p1{
    color:red;
    }   
.p2{
    text-align:center;
    }   
.p3{
    line-height:50px;
    }
.p4{
    text-indent:2em;
    }
.p5{
    text-decoration:line-through;
    }
.div2{
    border:1px solid red;
    padding:20px;
    }
![18.png](https://img.haomeiwen.com/i3260639/668445cd70292382.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
.img1{
    width:70px;
    height:70px;
    vertical-align:middle;
    }   
                
</style>
</head>
<body>
    <div class="div1">
        <p class="p1">这是第一行(样式为: 字体红色)</p>
        <p class="p2">这是第二行(样式为:居中)</p>
        <p class="p3">这是第三行(样式为:行高50px)</p>
        <p class="p4">这是第四行(样式为:缩进2em)</p>
        <p class="p5">这是第五行(样式为:删除线)</p>
        <div class="div2">
             <img src="tu24.png" alt="" class="img1">这是第六行(样式为:垂直居中)
        </div>
        
    </div>
</body>
</html>

演示效果如图所示:


2.png

三、cursor设置鼠标形状

四、背景样式

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
.div1{
    width:500px;
    height:500px;
    background-color:#F1CCE8;      //背景颜色
    }
.div2{
    width:100%;
    height:100%;
    background-image:url(tu24.png);          // 插入背景图片
    background-repeat:no-repeat;              //图片不平铺
    background-position:center center;      //背景图片垂直水平居中
    }
</style>
</head>
<body>
    <div class="div1">
        <div class="div2">
        </div>
    </div>
</body>
</html>

演示效果图:


3.png

五、列表样式

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style type="text/css">
.div1{
    width:300px;
    height:300px;
    background-color:#F1CCE8;
    padding:20px;
    }
.ul1{
    }
.ul2{
    list-style-type:none;
    }
.ul3{
    list-style-image:url(person02.png);
    list-style-position:outside;
    
    }   
</style>
</head>
<body>
    <div class="div1">
        <ul class="ul1">
            <li>第一队</li>
            <li>第一队</li>
            <li>第一队</li>
        </ul>
        <ul class="ul2">
            <li>第二队</li>
            <li>第二队</li>
            <li>第二队</li>
        </ul>
        <ul class="ul3">
            <li>第三队</li>
            <li>第三队</li>
            <li>第三队</li>
        </ul>
    </div>
</body>
</html>

演示效果图为:


4.png
上一篇下一篇

猜你喜欢

热点阅读