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.
<style type="text/css"> .img { display: inline-block; position: relative; text-decoration: none; } .img img { border: 1px solid #cccccc; padding: 10px; } img:hover { border-color: #aaaaaa; } .img div { background: #666666; color: #ffffff; opacity: .70; padding: 3px 0px; position: absolute; left: 0px; bottom: 25px; text-align: center; width: 100%; } .img:hover div { opacity: .90; } </style> <a href="#" class="img"> <img src="http://www.nealgrosskopf.com/images/gallery/thumbs/100_2640.jpg"> <div>Green Plants</div> </a>
以上是关于CSS图像框架-一个简单的方式来样式图像使用CSS的主要内容,如果未能解决你的问题,请参考以下文章