ホームページ > 記事 > ウェブフロントエンド > 灰色の背景に白い文字_html/css_WEB-ITnose
<a href="http://www.dianping.com/" target="_Blank"> <div class="big news-thumb" data-page="random-page"> <span class="icon-font" aria-hidden="true" style="width: 100%; text-align: center; margin-top: 50px">大众点评</span> </div> </a>
ディスカッションへの返信 (解決策) 灰色の背景が使用されているのを見ませんでした...
投稿するのを忘れた人もいます
.news-thumb {background: #C8C9CA;}
.news-thumb:hover:hover {color:white;opacity:1;}
上のテキストは白にする必要があり、背景色の影響を受けます。
背景ではなく、透明度の影響を受けます
灰色の背景が使用されているのは見当たりませんでした...
上のテキストは白にする必要があり、背景色の影響を受けます。
<!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title></head><style> .left{ width:19.5%; } .right{ width:80.2%; } .main{ height:200px; opacity: 0.7; filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70); background-color: lightgray; line-height: 200px; float: left; text-align: center; border: 1px white solid; pading:2px; color:white; } .main:hover{ opacity: 1; }</style><body><a href="http://www.dianping.com/" target="_Blank"> <div class="left main" data-page="random-page"> 微信电脑版 </div></a><a href="http://www.dianping.com/" target="_Blank"> <div class="right main" data-page="random-page"> 大众点评 </div></a></body></html>