Hello again, After 3 months i am going to write about CSS and this article may help you for CSS even for basic designers. Here is some screenshots of QrONE CSS Designer, Features Quick & exact preview You can get CSS Code Easy to find options Easily edit CSS codes in online browser. Also edit [...]
Archive for the ‘XHTML / CSS’ Category
If you’re a Web developer / Designer? Then you should use Firebug!
Hello Again! Now i’m going to show you about the Firebug, Addon for Mozilla Firefox browser. About Firebug Firebug integrates with Firefox to put a wealth of development tools at your fingertips while you browse. You can edit, debug, and monitor CSS, HTML, and JavaScript live in any web page… Developers: Joe Hewitt, johnjbarton, robcee, [...]
Simple rounded corners in CSS / XHTML
Hello again! Now i’m going to show you about how to make rounded corners in HTML (through CSS). just follow the code Css Style /* for default four corners */ -webkit-border-radius: 6px; -khtml-border-radius: 6px; -moz-border-radius: 6px; /* to make individual corners (for mozilla firefox) */ -moz-border-radius-bottomright:10px; -moz-border-radius-bottomleft:10px; -webkit-border-bottom-left-radius: 10px 10px; -webkit-border-bottom-right-radius: 10px 10px; Sample Preview [...]
How to overwrite style’s in CSS
If you want overwrite a particular style to avoid conflicts, try the below one. its working perfectly for me. For example, If you write a different style’s for same tag (tag, class, id whatever) then the HTML considers only the last call of style from the .CSS file. the following screenshot will help you. Result [...]