Home All Groups Group Topic Archive Search About
Author
6 Sep 2006 11:20 AM
Barry
Are there any good examples of CSS style sheets to be used with ASP.NET
(Visual Studio 2003) on the internet.

Note: i have seen the w3school examples, not intrested in them

TIA
Barry

Author
6 Sep 2006 10:33 AM
Mark Rae
"Barry" <nob***@nowhere.com> wrote in message
news:%23PDAh4Z0GHA.4920@TK2MSFTNGP06.phx.gbl...

> Are there any good examples of CSS style sheets to be used with ASP.NET
> (Visual Studio 2003) on the internet.

How far did you get with Google...?
Are all your drivers up to date? click for free checkup

Author
6 Sep 2006 11:41 AM
Patrice
You could find the full spec at http://www.w3.org/Style/CSS/ as well as
learning resources if this is what you looking for...

--
Patrice

"Barry" <nob***@nowhere.com> a écrit dans le message de news:
%23PDAh4Z0GHA.4***@TK2MSFTNGP06.phx.gbl...
Show quoteHide quote
> Are there any good examples of CSS style sheets to be used with ASP.NET
> (Visual Studio 2003) on the internet.
>
> Note: i have seen the w3school examples, not intrested in them
>
> TIA
> Barry
>
>
>
Author
6 Sep 2006 3:41 PM
Rob MacFadyen
Have you seen:
http://www.csszengarden.com/

It really shows what you can do with CSS.

But... perhaps you could be more specific with your question? Stylesheets
are generally independant of the language used to implement the web page
generation (eg. doesn't really matter if the webpage is generated by PHP or
ASP.NET).

Regards,

Rob MacFadyen


Show quoteHide quote
"Barry" <nob***@nowhere.com> wrote in message
news:%23PDAh4Z0GHA.4920@TK2MSFTNGP06.phx.gbl...
> Are there any good examples of CSS style sheets to be used with ASP.NET
> (Visual Studio 2003) on the internet.
>
> Note: i have seen the w3school examples, not intrested in them
>
> TIA
> Barry
>
>
>
Author
7 Sep 2006 6:14 AM
Barry
Thank all you guys for the quick replies, this message is a reply
specifically to Rob.

the examples i have seen are like this on w3schools

a:link{font-weight: 900;}

i would like something which is show on ASP.NET

..Content
{
    font- ?????
    font-decoration: ???
    .....
    .....
    .....
}
..Content .HyperLink A:hover
{
     font-weight: 900;
}

this is something i have written (copied) from some example


Show quoteHide quote
"Rob MacFadyen" <rmacfadyen_at_gmail.com> wrote in message
news:eROT7rc0GHA.720@TK2MSFTNGP02.phx.gbl...
> Have you seen:
> http://www.csszengarden.com/
>
> It really shows what you can do with CSS.
>
> But... perhaps you could be more specific with your question? Stylesheets
> are generally independant of the language used to implement the web page
> generation (eg. doesn't really matter if the webpage is generated by PHP
> or ASP.NET).
>
> Regards,
>
> Rob MacFadyen
>
>
> "Barry" <nob***@nowhere.com> wrote in message
> news:%23PDAh4Z0GHA.4920@TK2MSFTNGP06.phx.gbl...
>> Are there any good examples of CSS style sheets to be used with ASP.NET
>> (Visual Studio 2003) on the internet.
>>
>> Note: i have seen the w3school examples, not intrested in them
>>
>> TIA
>> Barry
>>
>>
>>
>
>
Author
7 Sep 2006 7:22 AM
Patrice
Try a CSS reference site such as http://www.w3.org/TR/CSS21/fonts.html or
http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/properties/font.asp
for font properties.

AFAIK this is text-decoration not font-decoration...

The second notation allows to specify styles for elements that are embedded
within particular elements. See :
http://www.w3.org/TR/CSS21/selector.html

--
Patrice

"Barry" <nob***@nowhere.com> a écrit dans le message de news:
eXzTfTk0GHA.4***@TK2MSFTNGP03.phx.gbl...
Show quoteHide quote
> Thank all you guys for the quick replies, this message is a reply
> specifically to Rob.
>
> the examples i have seen are like this on w3schools
>
> a:link{font-weight: 900;}
>
> i would like something which is show on ASP.NET
>
> .Content
> {
>    font- ?????
>    font-decoration: ???
>    .....
>    .....
>    .....
> }
> .Content .HyperLink A:hover
> {
>     font-weight: 900;
> }
>
> this is something i have written (copied) from some example
>
>
> "Rob MacFadyen" <rmacfadyen_at_gmail.com> wrote in message
> news:eROT7rc0GHA.720@TK2MSFTNGP02.phx.gbl...
>> Have you seen:
>> http://www.csszengarden.com/
>>
>> It really shows what you can do with CSS.
>>
>> But... perhaps you could be more specific with your question? Stylesheets
>> are generally independant of the language used to implement the web page
>> generation (eg. doesn't really matter if the webpage is generated by PHP
>> or ASP.NET).
>>
>> Regards,
>>
>> Rob MacFadyen
>>
>>
>> "Barry" <nob***@nowhere.com> wrote in message
>> news:%23PDAh4Z0GHA.4920@TK2MSFTNGP06.phx.gbl...
>>> Are there any good examples of CSS style sheets to be used with ASP.NET
>>> (Visual Studio 2003) on the internet.
>>>
>>> Note: i have seen the w3school examples, not intrested in them
>>>
>>> TIA
>>> Barry
>>>
>>>
>>>
>>
>>
>
>
Author
8 Sep 2006 12:13 AM
Rob MacFadyen
Barry,


Still not sure where you're going with this.

The typical font attributes (with example values):
    font-family: Verdana;
    font-size: 8pt;
    font-weight: normal;
    color: #003399;

font-weight is typically normal, lighter, bold, bolder or
100,200,300,400,500,600,700,800,900 or inherit

I'd have to lookup on in msdn exactly where all these values are in relation
to each other... I've stuck with normal and bold... not too fancy :)

text-decoration controls how hyperlinks apprear, text-decoration:underline
is the default, and text-decoration:none is common for removing the
underlining. It's possible text-decoration applies elsewhere... I've only
used it for links... for certainity check msdn or other refrence material.

Is that sort of what you're looking for?

Regards,

Rob MacFadyen

Show quoteHide quote
"Barry" <nob***@nowhere.com> wrote in message
news:eXzTfTk0GHA.4772@TK2MSFTNGP03.phx.gbl...
> Thank all you guys for the quick replies, this message is a reply
> specifically to Rob.
>
> the examples i have seen are like this on w3schools
>
> a:link{font-weight: 900;}
>
> i would like something which is show on ASP.NET
>
> .Content
> {
>    font- ?????
>    font-decoration: ???
>    .....
>    .....
>    .....
> }
> .Content .HyperLink A:hover
> {
>     font-weight: 900;
> }
>
> this is something i have written (copied) from some example
>
>
> "Rob MacFadyen" <rmacfadyen_at_gmail.com> wrote in message
> news:eROT7rc0GHA.720@TK2MSFTNGP02.phx.gbl...
>> Have you seen:
>> http://www.csszengarden.com/
>>
>> It really shows what you can do with CSS.
>>
>> But... perhaps you could be more specific with your question? Stylesheets
>> are generally independant of the language used to implement the web page
>> generation (eg. doesn't really matter if the webpage is generated by PHP
>> or ASP.NET).
>>
>> Regards,
>>
>> Rob MacFadyen
>>
>>
>> "Barry" <nob***@nowhere.com> wrote in message
>> news:%23PDAh4Z0GHA.4920@TK2MSFTNGP06.phx.gbl...
>>> Are there any good examples of CSS style sheets to be used with ASP.NET
>>> (Visual Studio 2003) on the internet.
>>>
>>> Note: i have seen the w3school examples, not intrested in them
>>>
>>> TIA
>>> Barry
>>>
>>>
>>>
>>
>>
>
>

Bookmark and Share