当前位置: 首页 > 图文教程 > 网页制作 > CSS样式表 > 让图片 div居中实现代码

CSS样式表
网页设计布局基础
Lesson01_01 HTML基础
HTML的全局架构标签
Lesson01_03 注释与特殊字符
Lesson01_04 格式标签与文本标签
Lesson01_05 HTML中的超链接
Lesson01_07 图像标签
Lesson02_01 表格标签
Lesson02_02 帧标签
Lesson02_03 表单标签
Lesson02_04 表单标签(2)
Lesson02_05 头元素
Lesson02_06 分区标签
Lesson03_02 样式规则选择器
学习标准——笔记
用好href的target属性
常用CSS集合
教你如何用CSS来控制网页字体的显示样式
用CSS解决中英文混合字符串的截取省略问题的解决办法
鼠标移动到超链接上的效果

CSS样式表 中的 让图片 div居中实现代码


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 254 ::
收藏到网摘: n/a


提示:可以修改后运行.

img 图片居中:先小小的记录下发现的新方法,有空在整理下。

具体代码:

CSS Code复制内容到剪贴板
       
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">   
  2.    
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">   
  4.    
  5. <head>   
  6.    
  7. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />   
  8.    
  9. <title>hezc</title>   
  10.    
  11. <style type="text/css">   
  12.    
  13. .hezc{width:200pxheight:200px;line-height:200px;font-size:180px;text-align:center;display:table-cellvertical-align:middle;border:1px solid #ccc}   
  14.    
  15. .hezc img{ vertical-align:middle;}   
  16.    
  17. </style>   
  18.    
  19. </head>   
  20.    
  21. <body>   
  22.    
  23. <div class="hezc">   
  24.    
  25. <img src="http://www.ruanchen.com/"keyword">border="1" widht="100" height="100"/>   
  26.    
  27. </div>   
  28.    
  29. </body>   
  30.    
  31. </html>