我在 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;)
我怎样才能使事物正确显示?