Skip to content

Instantly share code, notes, and snippets.

@rtivital
Created October 23, 2015 21:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rtivital/430c21e77da75d2554d0 to your computer and use it in GitHub Desktop.
Save rtivital/430c21e77da75d2554d0 to your computer and use it in GitHub Desktop.
Быстрая отладка css-лэйаутов
/*
Использйте универсальный селектор
для быстрой отладки лэйаутов
*/
body * {
/*
Можно использовать свойство background-color
c определенной прозрачностью
*/
background-color: rgba(0,0,0, .05);
/* Или свойство border */
border: 1px solid;
/*
Подобное решение поможет наглядно продемонстировать
все свойства margin, padding, width и height у всех элементов
*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment