CSS 常用样式属性和字体图标

简介: CSS 常用样式属性和字体图标

个人主页:学习前端的小z

个人专栏:HTML5和CSS3悦读

本专栏旨在分享记录每日学习的前端知识和学习笔记的归纳总结,欢迎大家在评论区交流讨论!


⭐作业

<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="三角形" content="三角形">
        <meta description="三角形" content="三角形">
        <title>三角形</title>
        <style>
            .btn {
                position: relative;
                width: 100px;
                height: 50px;
                background-color: black;
                color: white;
                margin: 30px auto 0;
                line-height: 50px;
                text-align: center;
            }
            .tips {
                position: absolute;
                width: 300px;
                height: 50px;
                left: 50%;
                background-color: blue;
                margin-left: -150px;
                top: 60px;
                color: white
            }
            .tips::after {
                content:'';
                position: absolute;
                width: 0;
                height: 0;
                line-height: 0;
                font-size: 0;
                border: 10px solid transparent;
                border-bottom-color: red;
                left: 50%;
                margin-left: -10px;
                bottom: 50.5px;
            }
            .btn:hover .tips  {
                display: block;
            }
            .btn .tips {
                display: none;
            }
        </style>
    </head>
    <body>
        <div class="btn">
            查看
            <div class="tips">我想学习前端知识</div>
        </div>
    </body>
</html>

<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="图片" content="图片">
        <meta description="图片" content="图片">
        <title>图片</title>
        <style>
            * {
                margin: 0;
                padding: 0;
            }
            div {
                width: 300px;
                margin: 30px auto 0;
                background-color: blue;
            }
            .method1 {
                display: block;
            }
            .method2 {
                /* vertical-align: top;
                vertical-align: middle; */
                vertical-align: bottom;
            }
        </style>
    </head>
    <body>
        <div>
            <img src="./images/1.jpg" height="50px">          
        </div>
        <div>
            <img class="method1 " src="./images/1.jpg" height="50px">
        </div>
        <div>
            <img class="method2 " src="./images/1.jpg" height="50px">
        </div>
      
    </body>
</html>

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <meta name="计数器" content="计数器">
        <meta description="计数器" content="计数器">
        <title>计数器</title>
        <style>
            * {
                margin: 0;
                padding: 0;
            }
            ul {
                list-style: none;
            }
            body {
                counter-reset: month;
            }
            .box {
                counter-reset: day;
                width: 300px;
                margin: 30px auto 0;
                
            }
            .month {
                text-align: center;
            }
            .month::after {
                counter-increment: month;
                content: '第 'counter(month)'月';
            }
            .day>li {
                float: left;
                width: 50px;
                height: 50px;
                text-align: center;
                line-height: 50px;
            }
            .day>li::after {
                counter-increment: day;
                content: counter(day);
            }
            .clearfix::after {
                content: '';
                display: block;
                clear: both;
            }
        </style>
    </head>
    <body>
        <div class="box">
            <h3 class="month"></h3>
            <ul class="day clearfix">
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
            </ul>
        </div>
        <div class="box">
            <h3 class="month"></h3>
            <ul class="day clearfix">
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
                <li></li>
            </ul>
        </div>
    </body>
</html>

<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="字体图标" content="字体图标">
        <meta description="字体图标" content="字体图标">
        <title>字体图标</title>
        <link rel="stylesheet" href="./iconfont/iconfont.css">
        <style>
            * {
                padding: 0;
                margin: 0;  
            }
            .fotter {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                height: 50px;
            }
        </style>
    </head>
    <body>
        <div class="fotter">
            <span class="iconfont" style="color:blue;">&#xe622;</span>
            <span class="iconfont">&#xe61d;</span>
            <span class="iconfont">&#xe616;</span>
            <span class="iconfont">&#xe6e2;</span>
            <span class="iconfont">&#xe892;</span>
            <span class="iconfont icon-gouwuche"  style="color:blue;"></span>
            <span class="iconfont icon-wode"></span>
            <span class="iconfont icon-fenlei"></span>
            <span class="iconfont icon-shouye"></span>
            <span class="iconfont icon-shezhi"></span>
        </div>
    
    </body>
</html>

<!DOCTYPE html>
<html lang="zh-CN">
    <head>
        <meta charset="UTF-8">
        <meta name="字体图标" content="字体图标">
        <meta description="字体图标" content="字体图标">
        <title>字体图标</title>
        <link rel="stylesheet" href="./iconfont/iconfont.css">
        <style>
            * {
                padding: 0;
                margin: 0;  
            }
            a {
                text-decoration: none;
                color: black;
            }
            a:hover {
                color: red;
            }
            .fotter {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                height: 100px;
                font-size: 0;
                box-shadow: 0 0 10px #ccc;
            }
            
            .fotter .item {
                width: 25%;
                display: inline-block;
                font-size: 18px;
                text-align: center;
                cursor: pointer;
                margin-top: 15px;
            }
            
            .iconfont {
                font-size: 50px;
            }
        </style>
    </head>
    <body>
        <div class="fotter">
            <a class="item">
                <div class="iconfont icon-shouye"></div>
                <div>首页</div>
            </a>
            <a class="item">
                <div class="iconfont icon-fenlei"></div>
                <div>分类</div>
            </a>
            <a class="item">
                <div class="iconfont icon-gouwuche"></div>
                <div>购物车</div>
            </a>
            <a class="item">
                <div class="iconfont icon-wode"></div>
                <div>我的</div>
            </a>
            
        </div>
    
    </body>
</html>

目录
相关文章
|
22天前
|
前端开发
如何设置 CSS 盒子模型的边框样式?
CSS盒子模型的边框样式可以通过`border`属性设置,包括边框宽度、样式和颜色。例如:`border: 2px solid red;` 设置了2像素宽的红色实线边框。也可分别设置四边,如`border-top`、`border-right`等。
|
2月前
|
前端开发
CSS属性:盒子模型
CSS属性:盒子模型
32 0
|
2月前
|
前端开发
CSS属性
CSS属性
29 0
|
11天前
|
前端开发 JavaScript UED
|
15天前
|
Web App开发 前端开发 iOS开发
css所有缩写属性,CSS属性简写整理
css所有缩写属性,CSS属性简写整理
13 1
|
28天前
|
前端开发 JavaScript
CSS样式穿透技巧:利用scoped与deep实现前端组件样式隔离与穿透
CSS样式穿透技巧:利用scoped与deep实现前端组件样式隔离与穿透
132 1
|
2月前
|
前端开发
前端基础(五)_CSS文本文字属性、背景颜色属性
本文详细介绍了CSS中关于文本和背景颜色的样式属性。包括字体大小、字体族、字体加粗、字体样式、文本行高、`font`属性、文本颜色、文本对齐方式、文本装饰线、首行缩进等文本属性,以及背景颜色、背景图片、背景重复、背景位置等背景属性。文章通过示例代码展示了这些属性的具体应用和效果。
30 3
前端基础(五)_CSS文本文字属性、背景颜色属性
|
1月前
|
前端开发
CSS 中哪些属性可以继承
在 CSS 中,属性分为可继承与不可继承。可继承属性会在子元素中沿用父元素的样式设定。常见可继承属性包括:文本属性(如 `font-family`, `color`),列表属性(如 `list-style`),表格布局属性(如 `border-collapse`),以及其他如 `visibility` 和 `direction` 等属性。正确理解这些属性有助于更高效地进行样式设计。
|
1月前
|
编解码 前端开发 JavaScript
使用 CSS 打印样式为 Web 页面设置专业的打印机效果
使用 CSS 打印样式为 Web 页面设置专业的打印机效果
46 2
|
15天前
|
前端开发
css简写属性
css简写属性
24 0

热门文章

最新文章