CSS3之超出隐藏】的更多相关文章

html <td ><a class="link" href="{$vo.link}" target="_blank">{$vo.link}</a></td> css <style> .link{ overflow: hidden; text-overflow: ellipsis; -o-text-overflow: ellipsis; white-space:nowrap; width…
测试代码: <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta http-equiv="Content-Type" content="text/html…
.dropdown-navbar>li:last-child>a { border-bottom: 0 solid #DDD; border-top: 1px dotted transparent; color: #4f99c6; text-align: center; font-size: 13px; } :first-child和:last-child用来选择某个元素的第一个子元素.//输入ul li:first-child//输入ul li:last-child刚刚有个这方面的视频,视频…
<table style="table-layout: fixed;width: XXX px"> <tr> <td style="white-space: nowrap;text-overflow: ellipsis;overflow: hidden;" ></td> </tr> </table> table标签需要设定属性 table-layout: fixed;width:XXXpx; 在…
常用的字体超出隐藏不能兼容H5和ios 所以整理了两种用jquery来实现的方法,然后弊端是只能隐藏指定字数不能段落隐藏 方法一. //超出隐藏兼容iosfunction hide(text,nuber) { var array = []; $(text).each(function(){ var content=$.trim($(this).text());//去掉前后文空格 array.push(content);//内容放进数组 }) for(var i=0;i<array.length;…
line-height是css样式里设置行高的方法,在div中有overflow:hidden,可以隐藏超出div的内容,配合行高和div的高,可以设置该div里可以显示几行内容,div可以容纳几个行高就显示几行,如下面的代码和图示测试的,在div设置了超出隐藏样式后:div是40px,设置行高为20px,div高度可以容纳两个行高,就会显示两行.行高为10px,div可以容纳四个行,就会会显示四行. 行高还可以让一行文字在div中垂直居中,如下代码和图示,行高上上下的,在该div中文字距离di…
文本超出显示三个点一般分两种情况 一,单行文本超出隐藏 overflow:hidden; text-overflow:ellipsis; white-space:nowrap; 二,多行文本超出隐藏 text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; //行数需设置 line-clamp: 3; -w…
在写页面的时候,我们经常会需要用到关于文本的换行,强制换行以及显示几行超过显示省略号等,今天我们就对这些问题来做个汇总吧! 1.自动换行 div{ word-wrap:break-word; word-break:normal; } 2.强制不换行 div{ white-space:nowrap; } 3.强制英文单词换行 div{ word-break:break-all; } 4.单行文本不换行多余文本显示省略号 div{ width:200px; white-space:nowrap; o…
文本超出隐藏显示省略号 1.单行文本的溢出显示省略号 overflow: hidden; text-overflow:ellipsis; white-space: nowrap; // overflow 属性规定当内容溢出元素框时发生的事情,可能值为visible(默认).hidden.scroll.auto.inherit // text-overflow 属性规定当文本溢出包含元素时发生的事情,cilp(默认,修剪文本).ellipsis(显示省略号).string(给定字符串代替) 2.多…
首页,重点是有一个包裹img标签的容器,这里我们给该容器设置一个class为selfScale <div class="selfScale"> <img sr="#" /> </div> 接下来,给样式 .selfScale{//容器 cursor: pointer; width: %; overflow: hidden; position: relative; } .selfScale img{//容器中东西 width: %;…