Jump to content
  • 0

Чистка css


MAzZY
 Share

Question

Добрый день, коллеги

Попался мне в руки старенький шаблон, свёрстанный неким школьником. Внешне всё выглядит хорошо, но внутри как-то всё печально. Код я починил, насколько нужно, а вот с css тяжеловато. Там полторы тысячи строк и разобрать это вручную малореально. Конечно, что-то я уже почистил, но не более того.

Посему вопрос: есть ли какой-то сервис, программа, скрипт, позволяющие (полу)автоматически сделать следующее:

1) убрать неиспользуемые правила

2) указать пересекающиеся/дублирующиеся правила

3) максимально сократить код, убрав конструкции, подобные этой

9265863.jpg

 

Короче, нужно максимально оптимизировать css, но не просто убрать пробелы и сжать всё, а именно провести логическую чистку.

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 1

@MAzZY, для галпа я использую плагин csso

На входе

#page #header .search .button {
	background-color: transparent;
	cursor: pointer;
	background-image: url(../images/search-button.png);
	background-repeat: no-repeat;
	height: 14px;
	width: 14px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	position: absolute;
	left: 8px;
	top: 6px;
}

 на выходе

#page #header .search .button{
	background-color:transparent;
	cursor:pointer;
	background-image:url(../images/search-button.png);
	background-repeat:no-repeat;
	height:14px;
	width:14px;
	border-width:;
	border-style:none;
	position:absolute;
	left:8px;
	top:6px;
}

 

  • Like 1
Link to comment
Share on other sites

  • 0

Всем спасибо за помощь.

Итог такой:

1) удаление неиспользуемых элементов:

2) чистка правил, компоновка - http://css.github.io/csso/csso.html

  • Like 1
Link to comment
Share on other sites

  • 0
23 часа назад, gam1et сказал:

Вот здесь почитай, очень подробно расписано http://slaikblog.ru/category/css/css-optim/

Ничего нового, если честно. Всё это я и раньше знал и именно поэтому искал сервисы автоматической чистки-оптимизации, чтобы вручную не ковырять

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy