Do I need to use these in my CSS

.mainheader nav {
	background-color: #000000;
	height: 40px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

Was wondering if i need the -moz- and -webkit- part.

No, you don’t.
border-radius is supported without prefix: http://caniuse.com/#search=border-radius

1 Like