单击&#34后保存文件"在Wordpress中(见图片)

时间:2014-08-26 17:40:14

标签: css wordpress

有人可以解释为什么我在WordPress的Edit CSS选项卡上单击保存文件后,类中的代码会消失吗?

我怎样才能在wordpress中添加自己的css类? (css文件特定于Wordpress中的某个页面)

在点击保存文件之前: enter image description here 代码:

   .rect_style {
     stroke:black;
     stroke-width:5;
  }
  .rect_color_1{
      fill:#FFC863;
  }
  .rect_color_2{
      fill:#FFB939;
  }
  .rect_color_3{
      fill:#C58000;
  }
  .rect_color_4{
      fill:#9B6400;
  }
  .rect_obvious{
        opacity:1;
  }
  .rect_blur{
        opacity:0.2;
  }
  .rect_none{
    opacity: 0;
  }
  .external1{
      position:relative;
      width: 100px;
  }
  .external2{
      position:relative;
      width: 100px;
  }

点击保存文件后: enter image description here

.rect_style {
}

.rect_color_1 {
}

.rect_color_2 {
}

.rect_color_3 {
}

.rect_color_4 {
}

.rect_obvious {
    opacity: 1;
}

.rect_blur {
    opacity: .2;
}

.rect_none {
    opacity: 0;
}

.external1 {
    position: relative;
    width: 100px;
}

.external2 {
    position: relative;
    width: 100px;
}

从代码中,您可以注意到它只是删除了部分代码。

0 个答案:

没有答案