gpt4 book ai didi

c# - 如何在 C# ASP.NET 后面的代码中将背景图像设置为::在选择器之前

转载 作者:行者123 更新时间:2023-11-28 02:37:04 24 4
gpt4 key购买 nike

目前我正在尝试使用 代码将背景图片设置为 div 但是当我尝试将背景图片放入 div 并使用 div id 设置样式为 :before.

这是我的代码:

CSS 代码:

#theme1:before {

width: 106px;
content: " ";
position: absolute;
left: -16px;
top: -6px;
height: 100px;
}

ASPX代码:

<div id="theme1" runat="server">
<div id="theme2" runat="server">
hello <br/>
</div>
</div>

C#代码:

protected void Page_Load(object sender, EventArgs e)
{
theme1.Style["background-image"] = "Pic/img.jpg";
theme2.Style["background-image"] = "Pic/img1.png";
}

如有任何帮助,我们将不胜感激。谢谢!

最佳答案

尝试使用 attributes.add 而不是样式,例如。

theme1.attributes.add('style', 'background-image(图片路径)')

这应该行得通

关于c# - 如何在 C# ASP.NET 后面的代码中将背景图像设置为::在选择器之前,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47367178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com