Posts by Sampson • 182 points
2 posts
-
3
votes3
answers737
viewsA: Large variation relative margin between browsers
In the past, the model of box was different for Internet Explorer and all other browsers. Today, for all your projects, it’s smart to add the following: *, :before, :after, ::before, ::after {…
-
3
votes6
answers8101
viewsA: How to take the current date and add "n" minutes in this value?
It is very difficult to do many things with the object Date. If you want more control, consider the tool Moment.js. For example, to add 5 minutes: moment.add("minutes", 5);…