DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> DIV十CSS布局 >> 布局實例 >> css實現文字層浮在圖片之上示例代碼
css實現文字層浮在圖片之上示例代碼
編輯:布局實例     

文字層浮在圖片之在做一些當鼠標移到圖片上顯示描述信息功能是可以使用到,下面與大家分享個實例代碼,有類型需求的朋友可以參考下哈,希望對大家有所幫助

 

 
代碼如下:

復制代碼 代碼如下:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<title>說明</title>
<meta name="keywords" content="關鍵詞" />
<meta name="description" content="摘要" />
<link href="css/global.css" rel="stylesheet" type="text/css" />
<!--[if IE]>
<script src="scripts/js/html5.js"></script>
<![endif]-->
<style type="text/css">
*{
padding:0;
margin:0;
}
.images-content{
position: absolute;
z-index: 1;
left: 0;
bottom:0;
width: 100%;
color: #fff;
background: rgba(0,0,0,.7);
height: 54px;
line-height: 54px;
overflow: hidden;
}
.images-wrapper{
width:251px;
height:330px;
position:relative;
}
</style>
</head>
<body>
<div class="images-wrapper">
<img src="images/goods-1.jpg" alt="商品111" title="商品1"/>
<div class="images-content">
1111111111
</div>
</div>
</body>
</html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved