您好我正在尝试使用正则表达式在Dreamweaver中查找和替换所有内容。
我的CSS:
.class1{
position:relative;
float:left;
margin: 2px 1px 0px 0px;
}
.class2{
position:relative
float:left;
margin: 0px 1px 0px 0px;
}
现在我想使用正则表达式查找所有边距,并希望通过在最后添加!important来替换它们。
我已经可以通过使用此
找到使用正则表达式margin:.*?;
现在我想在Dreamweaver中使用正则表达式替换所有边距!important。 示例
margin: 0px 1px 0px 0px !important;
任何人都可以给出解决方案。
答案 0 :(得分:2)
在DW CS6中测试
搜索:margin:((?:\s*\d+px)+)\s*;
替换:margin:$1 !important;
我使正则表达式有点具体,所以当我们已经!important
时,我们不会添加!important
:)