0

我在 bd 上过 css 课程。在工作室管理中看到他们时,这没关系: .box_blue { background: url("../imgs/box_teste.png") no-repeat; #0087bd; border: 1px solid #0d5875; } .box_blue:hover { background: #0087bd; }

但是当我将它从 db 检索到 c# 并在 vs12 html 可视化器上看到它时没关系,但是当渲染到 html 时,双引号被替换为""" 所以......这是结果:

background: url("../imgs/box_teste.png") no-repeat; #0087bd;)

我怎样才能使事物正确显示?

4

1 回答 1

2

CSS 中的 URL 不需要引号。你可以把它们排除在外。

见:http ://www.w3.org/TR/css3-background/#background-image

于 2013-02-01T19:07:32.227 回答