How to create background css div/rounded corners?

Use the border-radius CSS property to create rounded borders.

Up vote 0 down vote favorite share g+ share fb share tw.

How can I create the following html/css style (rounded corners, basic background-color) highlighted in red box: html css html5 css3 link|improve this question asked Oct 10 '11 at 20:10JaJ54012 81% accept rate.

Use the border-radius CSS property to create rounded borders: -moz-border-radius: 5px; -webkit-border-radius: 5px; -o-border-radius: 5px; -ms-border-radius: 5px; border-radius: 5px; The prefixes are needed for cross-browser support See also: MDN: border-radius.

Realistically, you only need border-radius: 5px. Current versions of all browsers that support border-radius support it without the vendor prefix, and have done for a while. – thirtydot Oct 10 '11 at 20:30 1 In FireFox 3.6, which is still widely used, the -moz- prefix is still necessary.

Many users don't have the latest version of the browser. – Rob W Oct 10 '11 at 20:35 You're correct about -moz-, I didn't think carefully enough. – thirtydot Oct 10 '11 at 20:42 Cool, thanks all!

– JaJ Oct 10 '11 at 21:56.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions