Hacker News new | ask | show | jobs
by cluckindan 238 days ago
CSS rules to make styling work like you expect:

    *, *:before, *:after {
        box-sizing: border-box;
    }
1 comments

can you explain why you add this please?