这个
background:url(http://url);
background:url("http://url");
或这个
background:url('http://url');
根据CSS规范,所有这三个示例的URL位都是有效的CSS。
请注意,该规范标识了URL中的一些字符,如果存在这些字符,则需要使用反斜杠对其进行转义。in an unquoted URI, such asparentheses, commas, white space characters, single quotes (') and double quotes (").因此,您可能会发现最好在URL周围使用单引号或双引号。
in an unquoted URI, such asparentheses, commas, white space characters, single quotes (') and double quotes (").
请注意,您需要以以下格式编写完整的CSS属性:
background: url( http://example.com );