CSS图像框架-一个简单的方式来样式图像使用CSS

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS图像框架-一个简单的方式来样式图像使用CSS相关的知识,希望对你有一定的参考价值。

A tutorial showing you how to give your images some style using only CSS rather than using Photoshop to give images a border/frame.
  1. <style type="text/css">
  2. .img
  3. {
  4. display: inline-block;
  5. position: relative;
  6. text-decoration: none;
  7. }
  8.  
  9. .img img
  10. {
  11. border: 1px solid #cccccc;
  12. padding: 10px;
  13. }
  14.  
  15. img:hover { border-color: #aaaaaa; }
  16.  
  17. .img div
  18. {
  19. background: #666666;
  20. color: #ffffff;
  21. opacity: .70;
  22. padding: 3px 0px;
  23. position: absolute;
  24. left: 0px;
  25. bottom: 25px;
  26. text-align: center;
  27. width: 100%;
  28. }
  29.  
  30. .img:hover div { opacity: .90; }
  31. </style>
  32.  
  33. <a href="#" class="img">
  34. <img src="http://www.nealgrosskopf.com/images/gallery/thumbs/100_2640.jpg">
  35. <div>Green Plants</div>
  36. </a>

以上是关于CSS图像框架-一个简单的方式来样式图像使用CSS的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 CSS 为多个图像设置不同的样式?

codeigniter css 样式

停止将 CSS 'a' 样式应用于链接的图像

CSS 很酷的CSS方式使左或右对齐(但不是“样式”或“分类”)图像看起来很漂亮,没有HTML更改。

css如何用一类来改变背景颜色?

CSS选择样式=“float:left”的图像可能吗?