gpt4 book ai didi

CSS 错误/黑客攻击和 W3C 验证

转载 作者:太空宇宙 更新时间:2023-11-04 00:09:24 24 4
gpt4 key购买 nike

我正在查看的样式表中有以下几行(单独的):

.Ex1.Ex2 {
color:#333;
font-family:Verdana,Arial,sans-serif;
font-size:9pt;
font-weight:bold;
margin:24px 0 5px;
border-bottom:1px solid #333
}

{
background-color:#ffe;
border:1px solid #aaa;
color:#000;
font-family:Verdana,Arial,sans-serif;
font-size:9pt;
height:auto;
margin-top:5px
}

.box_title_container {
height:29px;
width:225px;
margin:0 auto;
background:url(../best_images/boxts.gif);
repeat-x
}

当通过 W3C 验证器时,两者都返回解析错误。由于创建样式表的人在 CSS 方面比我有更多经验,我可能认为这是两种类型的交叉浏览兼容性 hack,但我无法通过谷歌搜索(它现在是一个动词,对吗?)与此相关的任何内容。

至于第一行,它有两个封闭的属性集,第二行有一个独立的 repeat-x 值(这个“错误”在接下来的 5 或 6 行中重复出现)。

有人能告诉我这些是出于某种目的还是明显的错误?

提前致谢!

最佳答案

在您的第一个 CSS block 中,您必须为第二个指示 ID、类或 HTML 元素{}

.Ex1.Ex2 {
color:#333;
font-family:Verdana,Arial,sans-serif;
font-size:9pt;
font-weight:bold;
margin:24px 0 5px;
border-bottom:1px solid #333 /* missing ;*/
}

#IDneeded .CLASSneeed {
background-color:#ffe;
border:1px solid #aaa;
color:#000;
font-family:Verdana,Arial,sans-serif;
font-size:9pt;
height:auto;
margin-top:5px /* missing ;*/
}

对于第二个,“repeat-x”是“background”的值而不是 CSS 属性,只需移动 ;

.box_title_container {
height:29px;
width:225px;
margin:0 auto;
background:url(../best_images/boxts.gif) repeat-x;
}

关于CSS 错误/黑客攻击和 W3C 验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13629266/

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