码迷,mamicode.com
首页 > Web开发 > 详细

CSS单位与文字排版 display

时间:2017-03-07 11:53:44      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:单位   span   block   isp   doc   splay   空间   css   隐藏   

技术分享

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        div
        {
            height: 100px;
            width: 1000px;
            background-color: red;
        }
    </style>
</head>
<body>
    <!--行内标签-->
    <span>好好学习</span>
    <strong>天天向上</strong>
    <s>励精图治</s>
    <!--块级标签-->
    <!--ul,ol,dl都是块级标签-->
    <div>
        勤奋好学
    </div>
</body>
</html>

技术分享

技术分享

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        div
        {
            height: 100px;
            width: 1000px;
            background-color: red;
            /*使得div块变成行内元素*/
            display:inline-block;
        }
    </style>
</head>
<body>
    <!--行内标签-->
    <span>好好学习</span>
    <strong>天天向上</strong>
    <s>励精图治</s>
    <!--块级标签-->
    <!--ul,ol,dl都是块级标签-->
    <div>
        勤奋好学
    </div>
</body>
</html>

技术分享

 

display:inline;

 技术分享

display:block;

技术分享

 display:none;

技术分享

 

行内元素不能设置宽和高

visibility:hidden;隐藏但是占用页面空间

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style type="text/css">
        div
        {
            height: 100px;
            width: 1000px;
            background-color: red;
            display:block;
            visibility: hidden;
        }
    </style>
</head>
<body>
    <!--行内标签-->
    <span>好好学习</span>
    <strong>天天向上</strong>
    <s>励精图治</s>
    <!--块级标签-->
    <!--ul,ol,dl都是块级标签-->
    <div>
        勤奋好学
    </div>
</body>
</html>

 

技术分享

CSS单位与文字排版 display

标签:单位   span   block   isp   doc   splay   空间   css   隐藏   

原文地址:http://www.cnblogs.com/juansilence/p/6513757.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!