1

更新

在我的样式表中,我与这些片段有冲突。如果我保留这个

 <style type="text/css">

        ::selection{ background-color: #E13300; color: white; }
    ::moz-selection{ background-color: #E13300; color: white; }
    ::webkit-selection{ background-color: #E13300; color: white; }

然后,下面的渐变效果有效,但标题横幅向右移动。如果我删除它,标题横幅会正确定位,但下面代码的渐变效果不起作用:/

body {

                background-image:url('../assets/uploads/miweb/gradient2.png');
                background-repeat:repeat-x;

                margin: 40px;
                font: 13px/20px normal Helvetica, Arial, sans-serif;
                color: #4F5155;
                width:600px;
                height:500px;
                margin: 0 auto;

            }

        a {

更新二

这3行

::selection{ background-color: #E13300; color: white; }
::moz-selection{ background-color: #E13300; color: white; }
::webkit-selection{ background-color: #E13300; color: white; }

对页面的其余部分产生巨大影响

他们制作了以下代码:

body {



        background-image:url('../assets/uploads/miweb/gradient2.png');
        background-repeat:repeat-x;

        margin: 40px;
        font: 13px/20px normal Helvetica, Arial, sans-serif;
        color: #4F5155;
        width:600px;
        height:500px;
        margin: 0 auto;

    }

有效。如果我删除这 3 行,渐变效果将不会生效,字体字母将不是该系列,而是标准时间罗马。但是,负面影响是,就像我说的那样,它向右移动了我作为标题的横幅

我有一个标题页、一个控制器和一个视图以及我在视图中有链接的样式表

4

3 回答 3

0

The moz is for Firefox and as stated already its for styling. Are you using IE? as if so Id suggest trying alternate browser as well as IE has issues with the double colon which is for css3(no suprise there). have a look here as I used this when I first came across these and it described them well.

于 2012-11-14T11:49:48.493 回答
0

就像其他人所说的那样,代码不会影响元素的定位。它可以影响标题的唯一方法是,如果那段代码根本不被视为 css。检查代码是否在正确的样式标签中。

于 2012-11-14T11:42:40.873 回答
0

该代码不应影响您正在执行的操作。当用户使用鼠标选择文本时,该代码将更改文本的背景颜色和文本颜色。

您能否给我们一个示例链接,说明这种情况已被注释掉,好吗?

编辑

center:属性应该做什么?它不是有效的 CSS...

于 2012-11-14T11:40:18.613 回答