css multi-row and multi-column news mode_experience exchange
look at the picture:
this effect is even three-dimensional for the four-column news module, i used to use table, thinking it was more convenient than css. it was not until i developed the float of a that i found that using ul was more convenient and easier to control. let’s take a look at the code first:
quote:
.news{} .news li{ list-style:none; clear:both} .news li a#n1{ text-decoration:none; float:left; line-height:22px;} .news li a#n2{ text-decoration:none; float:right; color:#999} .news li a#n3{ float:right; padding-right:20px;color:#999} .news li a#n1:hover{ text-decoration:underline;} .news li a#n3:hover,.news li a#n3:hover{ text-decoration:none;}
a#n1 is the news title, floating on the left, n2 and n3 are the number of clicks and release date , right float, distance 20px;
note that all floats must be cleared on li.
the test supports ie6, ie7, ff, opera.
example, three columns: p>
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <title>css多行多列的新闻模式</title> <style type="text/css"> <!-- *{margin: 0px; padding:0px;} body { font-family:"宋体"; font-size:12px; color:#000; padding:100px;} .news{} .news li{ list-style:none; clear:both} .news li a#n1{ text-decoration:none; float:left; line-height:22px;} .news li a#n2{ text-decoration:none; float:right; color:#999} .news li a#n3{ float:right; padding-right:20px;color:#999} .news li a#n1:hover{ text-decoration:underline;} .news li a#n3:hover,.news li a#n3:hover{ text-decoration:none;} /**/ --> </style></head> <body> 这是三列 <ul class="news"> <li>左列,新闻标题项点 击发布日期</li> <li>>> 热烈祝贺weilaixu.cn隆重上线88882008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线88882008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线88882008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线88882008-08-08</li> </ul> </body> </html>
example, two columns:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <title>css多行多列的新闻模式</title> <style type="text/css"> <!-- *{margin: 0px; padding:0px;} body { font-family:"宋体"; font-size:12px; color:#000; padding:100px;} .news{} .news li{ list-style:none; clear:both} .news li a#n1{ text-decoration:none; float:left; line-height:22px;} .news li a#n2{ text-decoration:none; float:right; color:#999} .news li a#n3{ float:right; padding-right:20px;color:#999} .news li a#n1:hover{ text-decoration:underline;} .news li a#n3:hover,.news li a#n3:hover{ text-decoration:none;} --> </style></head> <body> 这是二列 <ul class="news"> <li>左列,新闻标题项点击次数</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> </ul> </body> </html>
example, dashed line:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <title>css多行多列的新闻模式</title> <style type="text/css"> <!-- *{margin: 0px; padding:0px;} body { font-family:"宋体"; font-size:12px; color:#000; padding:100px;} .news2{} .news2 li{ list-style:none;clear:both;margin-top:10px;border-bottom:1px dashed #ccc;height:16px; display:block} .news2 li a#n1{ text-decoration:none;float:left;} .news2 li a#n2{ text-decoration:none; float:right; color:#999;display:block} .news2 li a#n3{ float:right; padding-right:20px;color:#999; display:block} .news2 li a#n1:hover{ text-decoration:underline;} .news2 li a#n3:hover,.news li a#n3:hover{ text-decoration:none;} /**/ --> </style></head> <body> 加条虚线 <ul class="news2"> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> </ul> </body> </html>
example, different background colors:
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html; charset=gb2312" /> <title>css多行多列的新闻模式</title> <style type="text/css"> <!-- *{margin: 0px; padding:0px;} body { font-family:"宋体"; font-size:12px; color:#000; padding:100px;} .news{} .news3{ background:#ccc;} .news3 li{ list-style:none; clear:both; height:20px; padding-top:8px;} .news3 li#x1{ list-style:none; clear:both; height:20px; background-color:#f2f2f2} .news3 li a#n1{ text-decoration:none; float:left;} .news3 li a#n2{ text-decoration:none; float:right; color:#999} .news3 li a#n3{ float:right; padding-right:20px;color:#999} .news3 li a#n1:hover{ text-decoration:underline;} .news3 li a#n3:hover,.news li a#n3:hover{ text-decoration:none;} --> </style></head> <body> 不同背景色 <ul class="news3"> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li id="x1">>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> </ul> </body> </html>
example, border:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>css多行多列的新闻模式</title> <style type="text/css"> <!-- *{margin: 0px; padding:0px;} body { font-family:"宋体"; font-size:12px; color:#000; padding:100px;} .news4{} .news4 li{ list-style:none; clear:both;margin-top:10px; padding:10px; border:1px solid #ccc; display:block} .news4 li a#n1{ text-decoration:none;float:left;} .news4 li a#n2{ text-decoration:none; float:right; color:#999;display:block} .news4 li a#n3{ float:right; padding-right:20px;color:#999; display:block} .news4 li a#n1:hover{ text-decoration:underline;} .news4 li a#n3:hover,.news li a#n3:hover{ text-decoration:none;} /**/ --> </style></head> <body> 边框 <ul class="news4"> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> <li>>> 热烈祝贺weilaixu.cn隆重上线2008-08-08</li> </ul> </body> </html>
the above is the css multi-row and multi-column news mode_experience exchange content, please pay attention to the php chinese website (www.php.cn) for more related content!

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor

Dreamweaver CS6
Visual web development tools
