Font 系列 text系列 color line-height 四个值的顺序是 左上 右上 右下 左下。 宽高必须是0 Margin是 外边距,属性值是数字 数字又分正负。 正数:margin:20px; 负数:在static元素中(标准流下)margin-left为负数当前元素向左走 margi ...
分类:
其他好文 时间:
2018-10-09 19:57:04
阅读次数:
139
p{ width: 300px; height: 20px; line-height: 20px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}</style></head><body><p>记者从国家税务总局获悉, ...
分类:
其他好文 时间:
2018-10-09 11:43:47
阅读次数:
216
1. transparent 透明的 2. placeholder 提示语 3. 写页面: 搞清楚结构层次; 保证模块化,让他们之间不能受影响——元素性质 标准流; * 浮动带来的脱离文档流撑不起父级的高度问题,可以采用清除浮动的方式消除影响,absolute和fixed带来的脱离,文档流撑不起父级 ...
分类:
其他好文 时间:
2018-09-29 21:38:54
阅读次数:
192
maxWidth:'140px',whiteSpace:'nowrap',overflow:'hidden',textOverflow:'ellipsis' ...
分类:
其他好文 时间:
2018-09-27 22:11:18
阅读次数:
149
Z-index Flex布局 Flex是Flexible Box的缩写,意为”弹性布局”,用来为盒状模型提供最大的灵活性。设为Flex布局以后,子元素的float、clear和vertical-align属性将失效。 基本概念 采用Flex布局的元素,称为Flex容器(flex container) ...
分类:
其他好文 时间:
2018-09-27 20:12:01
阅读次数:
224
1.单行文字溢出显示省略号、 overflow: hidden; text-overflow: ellipsis; white-space: nowrap;//文本不换行 2.多行文本溢出显示省略号、 display: -webkit-box; -webkit-box-orient: vertica ...
分类:
Web程序 时间:
2018-09-27 14:17:42
阅读次数:
180
1:自定义字体:使得游览器可以使用自己设计的字体 @font-face { font-family:"bauhaus"; //自定义字体名字 src: url(./font/BAUHS93.TTF); } .font_test{ font: 25px "bauhaus"; } 使用:可以把矢量图定义 ...
分类:
其他好文 时间:
2018-09-21 23:03:35
阅读次数:
281
text-overflow: ellipsis !important; white-space: nowrap !important; overflow: hidden !important; display: block !important; ...
分类:
Web程序 时间:
2018-09-20 17:19:10
阅读次数:
154
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html lang="zh-CH"><head><met ...
分类:
其他好文 时间:
2018-09-17 00:04:18
阅读次数:
261
<div class="title">当对象内文本溢出时显示省略标记</div> 这是一个例子,其实我们只需要显示如下长度: css实现网页中文字过长截取... title class应该这样写: .title{ width:300px; white-space:nowrap; overflow:h ...
分类:
Web程序 时间:
2018-09-16 21:04:28
阅读次数:
232