I have large css file that contains css rule format like this:
.rounded-block
{
border: 1px solid #c0c0c0;
width: 500px;
margin: 15px 0 15px 0;
}
I need format this file like this
.rounded-block{border: 1px solid #c0c0c0;width: 500px;margin: 15px 0 15px 0;}
How can I do this?I can do this in visual studio?
Edit: I need that the other rule will be in another line
.rounded-block{border: 1px solid #c0c0c0;width: 500px;margin: 15px 0 15px 0;}
.anotherrule{margin: 15px;}