Reputation: 699
In my web page, there are some items listed like this,
Upvotes: 2
Views: 181
Reputation: 12190
Link Normalize CSS in your HTML page and your page should render the same in all major browsers.
Normalize.css makes browsers render all elements more consistently and in line with modern standards. It precisely targets only the styles that need normalizing.
Edit:
There can be an issue with the margin and padding, keep it to 0-
ul, li{
margin: 0;
padding: 0;
}
Upvotes: 2