Generating a stylesheet based on inline HTML styling?

前端 未结 3 1926
有刺的猬
有刺的猬 2021-01-27 02:03

I\'ve been working on styling different parts of my website for a while, however I have yet to put my inline styles into a stylesheet. I was wondering if a tool exists to parse

3条回答
  •  灰色年华
    2021-01-27 02:35

    Try with Firebug. In CSS part you have something like this:

    element.style {
    border: 1px solid;
    }

    for

    Just copy this in .block { } and that's it! It's not too easy, but it can help.

提交回复
热议问题