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

 

 

 

<!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>

posted @ 2022-03-15 11:08  xinyu-1  阅读(90)  评论(2)    收藏  举报