Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old May 7th, 2006, 08:17 AM
Authorized User
 
Join Date: Apr 2006
Posts: 79
Thanks: 1
Thanked 0 Times in 0 Posts
Send a message via AIM to anujrathi Send a message via MSN to anujrathi Send a message via Yahoo to anujrathi
Default What is CSS File in .NET ?

HI friends,

  Please any one tell me that what is CSS(Cascading Style Sheet) in .NET & what is the use of it ?
  How can we use it in designing our application for setting the properties ie font, color etc in any Web Application ?
 
Old May 7th, 2006, 10:56 AM
Authorized User
 
Join Date: May 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via Yahoo to manudutt
Default

CSS is not limited to .net, it is used for any HTML (or related) pages. CSS is used to create formating classes, these can be later used to format any web document object like - body, table, any paragraph etc.

You can use css on your webpage using -
1. inline style for example - <p style="font:10px Verdana; align:left">
2. create a text file and preferably name it .css, create formating classes like -
.name
{
color : red;
font: xyz;
border : 2 px ridge red;
}

and then use it on any object like a table division (td) as -
<td class="name">

it will change the style of that table division ..

please read more about it here - http://www.w3schools.com/css/default.asp

--->

I have known a great many troubles, but most of them never happened. -- Mark Twain





Similar Threads
Thread Thread Starter Forum Replies Last Post
How to apply CSS to XSLT file??? rakesh XSLT 1 July 25th, 2008 03:20 AM
CSS anomolies in ASP.NET David_0223 ASP.NET 2.0 Basics 1 March 27th, 2008 03:06 PM
The css file in my website gets disabled Mags VS.NET 2002/2003 3 March 27th, 2007 06:46 PM
How do I make this script into a css file? - Backg jstewie CSS Cascading Style Sheets 3 July 21st, 2005 08:13 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.