>  기사  >  웹 프론트엔드  >  CSS를 사용하여 div 배경 투명 스타일을 설정하는 방법에 대한 분석 예

CSS를 사용하여 div 배경 투명 스타일을 설정하는 방법에 대한 분석 예

黄舟
黄舟원래의
2017-07-20 10:24:311761검색

p 배경 투명 스타일:

스타일 코드:

.alert{filter:alpha(opacity=100); /* IE */ -moz-opacity:1.0; /* Moz + FF */
opacity: 1.0; height:300px; width:500px; background:#ccc; left:50%; 
top:50%;margin-top:-150px;margin-left:-250px;position:absolute;z-index:99; 
text-align:center; padding:20px;}

사용법:

<p class=”alert”>
背景透明
</p>

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=utf-8" />
<title></title>
<style type="text/css">
.alert
{filter:alpha(opacity=100); /* IE */ -moz-opacity:1.0; /* Moz + FF */ opacity: 1.0; height:300px; width:500px; background:#ccc; left:50%; 
top:50%;margin-top:-150px;margin-left:
-250px;position:absolute;z-index:99; text-align:center; padding:20px}
</style>
</head>
<body>
<p class="alert"><a href="http://www.100sucai.com">www.100sucai.com</a></p>
</body>
</html>

위 내용은 CSS를 사용하여 div 배경 투명 스타일을 설정하는 방법에 대한 분석 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.