473,379 Members | 1,270 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,379 software developers and data experts.

CSS examples

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

Sep 6 '06 #1
6 1076
"Barry" <no****@nowhere.comwrote in message
news:%2****************@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...?
Sep 6 '06 #2
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" <no****@nowhere.coma écrit dans le message de news:
%2****************@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

Sep 6 '06 #3
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" <no****@nowhere.comwrote in message
news:%2****************@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

Sep 6 '06 #4
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.comwrote in message
news:eR*************@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" <no****@nowhere.comwrote in message
news:%2****************@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


Sep 7 '06 #5
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" <no****@nowhere.coma écrit dans le message de news:
eX**************@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.comwrote in message
news:eR*************@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" <no****@nowhere.comwrote in message
news:%2****************@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



Sep 7 '06 #6
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" <no****@nowhere.comwrote in message
news:eX**************@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.comwrote in message
news:eR*************@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" <no****@nowhere.comwrote in message
news:%2****************@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



Sep 8 '06 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Thomas Guettler | last post by:
Hi! I read "How Python is developed" (comp.lang.python.announce), and think that there could be more examples in the docs. One think I really like to see: An example with mycmp(a, b)... in...
1
by: Ron Kneusel | last post by:
I have installed VTK 4.2.6 and Python 2.3.4. Both are working and I can run the VTK Python examples except for those in the GUI directory. These always fail with messages similar to this: ...
14
by: Jim Hubbard | last post by:
I am looking for documentation and code examples on DDML (Display Driver Management Level). It is mentioned in the 2000, XP and 2003 DDKs - but just barely. It has to do with mirroring a...
2
by: Rory Plaire | last post by:
Hi, I've been working with the J# browser control. I understand that v1.1b is scriptable, but can't find any examples on how to do this. Can someone point me in the right direction? thanks,...
1
by: sam++ | last post by:
Hi, I cd into examples/DLL/ and type "make", it failed to compile the example. The error is: # make make - -f DLL_Today.bor all make: don't know how to make all. Stop *** Error code 2 ...
19
by: Dales | last post by:
I have a custom control that builds what we refer to as "Formlets" around some content in a page. These are basically content "wrapper" sections that are tables that have a colored header and...
102
by: Xah Lee | last post by:
i had the pleasure to read the PHP's manual today. http://www.php.net/manual/en/ although Pretty Home Page is another criminal hack of the unix lineage, but if we are here to judge the quality...
4
by: Michael | last post by:
Hi! (OK, slightly silly subject line :) I'm extremely pleased to say - Kamaelia 0.4.0 has been released! What's New & Changed? =====================
1
by: AppleBag | last post by:
Hello I have found examples of using an .mdb file in VS2K3, but apparently the components in the toolbox are different than the ones shown in the 2K3 examples. I have google'd and searched high...
10
by: =?Utf-8?B?WWFua2VlIEltcGVyaWFsaXN0IERvZw==?= | last post by:
controlsPlease could some of you here post some of your live examples of AJAX (esp drag panels, collapsable panels, and popup menu.) (It's one thing to talk about how great something is, but it's...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.