超文本标记语言的结构包括“头”部分(英语:Head)、和“主体”部分(英语:Body),其中“头”部提供关于网页的信息,“主体”部分提供网页的具体内容。
最主要的css样式:
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
例子:
*{margin:0;padding:0;}
.page_right_bot{
width:165px;
height:128px;
border:1pxsolidred;
overflow:hidden;
}
.page_right_botulli{
height:25px;
line-height:25px;
cursor:pointer;
word-break:keep-all;/*不换行*/
white-space:nowrap;/*不换行*/
overflow:hidden;/*内容超出宽度时隐藏超出部分的内容*/
text-overflow:ellipsis;/*当对象内文本溢出时显示省略标记(...);需与overflow:hidden;一起使用。*/
}