CSS 다중 행 및 다중 열 뉴스 모드_경험 교환

PHP中文网
풀어 주다: 2016-05-16 12:05:51
원래의
1371명이 탐색했습니다.

CSS 다중 행 및 다중 열 뉴스 모드_경험 교환

사진을 보세요:
CSS 다중 행 및 다중 열 뉴스 모드_경험 교환

이 효과는 심지어 세 개의 열과 four 칼럼 뉴스 모듈의 경우 CSS보다 더 편리하다고 생각하여 table을 사용했습니다. ul을 사용하는 것이 더 편리하고 제어하기 쉽다는 것을 깨닫게 된 것은 float입니다. 코드 첫 번째:

인용:

.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은 뉴스 제목이고 왼쪽에 떠 있으며 n2와 n3입니다. 20px 간격으로 오른쪽에 떠 있는 클릭 수와 출시 날짜입니다.
이 테스트는 ie6, ie7, ff, Opera를 지원합니다.
예, 3개의 열:

예, 2개의 열:
<!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>
로그인 후 복사


예, 점선:
<!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>
로그인 후 복사


<!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>
로그인 후 복사
예, 다양한 배경색:



<!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>
로그인 후 복사
예, 테두리:



위 내용은 CSS multi- 행 및 다열 뉴스 모드_경험 교환. 더 많은 관련 내용을 보려면 PHP 중국어 웹사이트(www.php.cn)를 주목하세요!
<!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>
로그인 후 복사

관련 라벨:
css
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿