背景图片和渐变色同时应用

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
.txta{
width: 500px;
height:500px;
border: 1px solid #f00;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 20px;
overflow: hidden;
background-color: #F004;
background: linear-gradient(rgba(255,255,0,0.1) ,rgba(255,0,255,0.6)),url(images/section_mobile_bg.jpg); /*先设置渐变色,再设置背景*/
}
</style>
</head>
<body>
<div class="txta">
这是一个美丽的传说
</div>
</body>
</html>

浙公网安备 33010602011771号