Good evening, I want to greet all users of the HashCode site and the Administration as well. I relatively recently began to learn the programming language "Php". I learned a lot from the educational edition. Also, when I visit websites, I see beautiful streamlined forms for data entry. I know how to create the simplest form, but I consider it "unattractive." I ask you, if you know, to tell about how to create a form with rounded edges. It would be great if you posted the syntax in the comments.
- oneBy the way, beautiful forms are HTML, CSS and, perhaps, JS, but not PHP. - Oleg Arkhipov
|
1 answer
38 articles on rounded corners 2-line on request in Google.
- onein my opinion everything is easier: -webkit-border-radius: 20px; -moz-border-radius: 20px; border-radius: 20px; - Specter
- @Spectre, but what about -o-border-radius: 20px; = ( - Oleg Arkhipov
- oneBut what about everyone's favorite, ie 6? - FLK
- onein opera, ordinary
border-radius
works fine - Specter - @Spectre, I will know. @FLK, ah-ah-ah, compare Opera and IE6) - Oleg Arkhipov
|