标签: css css3
是否可以使div的背景图像成为属性的值。
例如:
<div bg="path_to_my_image">
这可能吗?
由于
答案 0 :(得分:0)
到目前为止,html中没有“bg”属性,您可以使用内联样式设置特定div的背景。
示例:
<div style="background:url(sample-image.jpg)"></div>
refer the code here (jsfiddle)