关于white-space的属性行为

white-space的属性行为:pre-line、normal、nowrap、pre、pre-wrap五个属性。

pre-line属性表示空白符合并、换行符保留、自动换行允许;

normal属性表示空白符合并、换行符忽略、自动换行允许;

nowrap属性表示空白符合并、换行符忽略、自动换行不允许;

pre表示空白符保留、换行符保留、自动换行不允许;

pre-wrap表示空白符保留、换行符保留、自动换行允许。

根据需要而选取不同属性,才能使文本属性可定义文本的外观进行进一步的优化。

text-indent可以使用所有长度单位,包括百分比。

其百分数要相对于缩进元素父元素的宽度。换句话说,如果将缩进值设置为20%,所影响元素的第一行会缩进其父元素宽度的20%。text-indent可以设置为负值。如果缩进后文本超出浏览器窗口的左边界,建议针对负缩进再设置一个外边距或一些内边距。

时间: 2024-10-24 07:51:58

关于white-space的属性行为的相关文章

Java文法(3)—— White Space

------------------------------------------------------------------------------- 说明: White space is defined as the ASCII space character, horizontal tab character, form feed character, and line terminator characters (§3.4). ---------------------------

dom4j解析xml报错:Nested exception: org.xml.sax.SAXParseException: White space is required between the processing instruction target and data.

采用dom4j方式解析string类型的xml xml:        String string="<?xmlversion=\"1.0\" encoding=\"UTF-8\"?><ROOT><HEAD><INFO><BUSINESSNO>T065205072015000097</BUSINESSNO><BUSINESSTYPE>T</BUSINESSTYPE&g

White space is required before the encoding pseudo attribute in the XML declaration.

错误出现的位置: <?xml version="1.0"encoding="UTF-8"?> 正确方式: <?xml version="1.0" encoding="UTF-8"?> 错误原因:标签中的属相间需要用空格区分开

background复合属性详解(上):background-image

background复合属性是个很复杂的属性,花样非常多,比较神奇的是css3 中支持多图片背景了,这篇文章先讲讲background-image属性,其他背景属性会在后续的文章综合总结. 一.最基本的情况是指定一张图片的url作为背景: <style> .parent{ height:200px; width:500px; border: 10px solid rgb(125, 125, 123); background-color: #bff; background-image:url(h

带你深入剖析inline-block属性值的前世今生

曾几何时,display:inline-block 已经深入「大街小巷」,随处可见 「display:inline-block; *display:inline; *zoom:1; 」这样的代码.如今现代浏览器已经全面支持这个属性值了,上面的代码只是为了兼容 IE6.7 而已.那么你真的了解 inline-block 了吗?本文将带你深入剖析该属性值的前世今生,让你更好的理解和运用 inline-block.(本文约定 display:inline-block 简写为 inline-block)

Engineer in the White Spaces

? Engineer in the White Spaces Michael Nygard A SySTEM ConSiSTS oF inTERdEpEndEnT pRogRAMS. We call the arrangement of these programs and their relationships architecture. When we diagram these systems, we often represent individual programs or serve

source insight 保存时删除多余空格,去除多余空格 space tab键

source insight 保存时删除多余空格,去除多余空格 space tab键 摘自:https://blog.csdn.net/lanmanck/article/details/8638391 2013年03月05日 15:57:28 lanmanck 阅读数:16527更多 个人分类: 嵌入式/Linux/C语言 版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/lanmanck/article/details/8638391 上传源码时

推荐一个优秀的c++源代码,TinyXml2

项目主页:http://grinninglizard.com/tinyxml2docs/index.html tinyxml2.h /* Original code by Lee Thomason (www.grinninglizard.com) This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for an

python子进程模块subprocess详解与应用实例 之二

1.2. Popen 对象 Popen类的实例有下列方法: 1. Popen.poll() 检查子进程是否已经结束,设置并返回返回码值. 2. Popen.wait() 等待子进程结束,设置并返回返回码值.WARNING: 当使用 stdout=PIPE 或 stderr=PIPE 并且子进程生成了足够多的输出信息到管道,以至于管道阻塞,将会造成死锁.         使用 communicate()可以避免这种情况. 3. Popen.communicate(input=None) 和子进程进

PHP 面试题

请写出以下html标签的含义: input form script style table b img ============================================================ <input/>标签 用于搜集用户信息. 根据不同的type属性值,输入字段拥有很多种形式. 输入字段可以是文本字段.复选框.掩码后的文本控件.单选按钮.按钮等等. =====================================================