tags:

views:

44

answers:

2
+1  Q: 

All stlyes in css

In .Net, all styles are not listed in corresponding controls and html tags. For example, the style "WORD-BREAK","WORD-WRAP" etc. Any site which lists all styles available to all tags and controls ?

+1  A: 

Have a look at w3schools. http://www.w3schools.com/css/css_reference_atoz.asp But remember that there are also styletags specific to a certain browser (like the mozilla tags).

As far as I know Visual Studio shows the tags which are compatible with all browsers (and that might be the reason why you are missing some items).

Also, you can apply all style tags to all HTML tags (you can assign font to an img tag), but they might not give you the effects you are hoping, but the beauty of CSS is that you can assign any style to any tag (and if you are embedding tags in eacht other it will inherit the style, so for example assigning a list-style to a div might not look usefull, but is allowed and will cause all lists in that div to look the same, ofcourse this can be done in various other ways).

Gertjan
i got this link. This shows all styles including the styles which does not show in Visual Studio, but we can use.http://www.blooberry.com/indexdot/css/propindex/all.htm
Sreejesh Kumar
+3  A: 

W3schools is a great place to start learning CSS.

The official specification is another place to look.

arneeiri
But here, all the styles will not be shown. Styles like "WORD-BREAK","WORD-WRAP" etc. are not shown. i got this link. This shows all styles including the styles which does not show in Visual Studio, but we can use. http://www.blooberry.com/indexdot/css/propindex/all.htmIs there any other sites like the above, which lists all styles available
Sreejesh Kumar
Look at the official specification - http://www.w3.org/TR/css3-text/
arneeiri
this is good one....thanks
Sreejesh Kumar