kdzwinel / CSS-Diff

Chrome extension that allows to easily compare CSS of two HTML elements.
GNU General Public License v3.0
200 stars 20 forks source link

Proposals to improve #14

Open ilyar opened 8 years ago

ilyar commented 8 years ago

Proposals to improve

ElemFoo {
  padding: 1px;
}

ElemBar {
  padding: 1px 2px;
}

diff(ElemFoo ElemBar) {
  padding-left: 2px;
  padding-right: 2px;
}

diff(ElemBar ElemFoo) {
  padding-left: 1px;
  padding-right: 1px;
}