Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > CSS examples

Reply
Thread Tools

CSS examples

 
 
Mark Rae
Guest
Posts: n/a
 
      09-06-2006
"Barry" <> wrote in message
news:%...

> 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...?


 
Reply With Quote
 
 
 
 
Barry
Guest
Posts: n/a
 
      09-06-2006
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



 
Reply With Quote
 
 
 
 
Patrice
Guest
Posts: n/a
 
      09-06-2006
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" <> a écrit dans le message de news:
%...
> 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
>
>
>



 
Reply With Quote
 
Rob MacFadyen
Guest
Posts: n/a
 
      09-06-2006
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" <> wrote in message
news:%...
> 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
>
>
>



 
Reply With Quote
 
Barry
Guest
Posts: n/a
 
      09-07-2006
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:...
> 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" <> wrote in message
> news:%...
>> 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
>>
>>
>>

>
>



 
Reply With Quote
 
Patrice
Guest
Posts: n/a
 
      09-07-2006
Try a CSS reference site such as http://www.w3.org/TR/CSS21/fonts.html or
http://msdn.microsoft.com/library/de...rties/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" <> a écrit dans le message de news:
...
> 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:...
>> 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" <> wrote in message
>> news:%...
>>> 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
>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
Rob MacFadyen
Guest
Posts: n/a
 
      09-08-2006
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

"Barry" <> wrote in message
news:...
> 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:...
>> 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" <> wrote in message
>> news:%...
>>> 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
>>>
>>>
>>>

>>
>>

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
.Net Tips, C# Tips : Create a well formed URI using UriBuilder classwith C# Examples and VB.Net Examples jayeshsorathia@gmail.com ASP .Net 1 07-31-2012 01:03 AM
.Net Tips, C# Tips : Get list of all files of directory or folderusing LINQ using .Net Framework 4 with C# Examples and VB.Net Examples jayeshsorathia@gmail.com ASP .Net 0 07-27-2012 07:13 AM
RESUME EXAMPLES INFORMATION / CV EXAMPLES NOW AVAILABLE THROUGHRESUMEWRITERGUIDE.COM rawebadvert3 Computer Support 0 03-23-2008 04:19 AM
COVER LETTERS RESUME EXAMPLES AND CV EXAMPLES AVAILABLE CURRICULUM VITAE rawebadvert3 Computer Support 0 08-21-2007 03:07 AM
COVER LETTERS RESUME EXAMPLES AND CV EXAMPLES AVAILABLE rawebadvert3 Computer Support 0 05-25-2007 04:18 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57