How Do I Reset All Css Styles For A Certain Div? (jekyll Blog)
I need to create a timeline. I'm using this timeline https://github.com/ybogdanov/history-timeline which is a JavaScript timeline. I did read this post and tried all of its solutio
Solution 1:
try
div {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
Post a Comment for "How Do I Reset All Css Styles For A Certain Div? (jekyll Blog)"