I have the following CSS div / class mark-up
.myclass #myid{
width: ;
height: ;
}
This is in about a dozen CSS files. Each CSS file has different widths and heights defined. I'd like to replace all of the markup in each file with a single consistent mark-up. Something like this
.myclass #myid{
width: 20px;
height: 30px;
}
Is this possible with PHPStorm?
