Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

HOW we can use css

Answer Posted / sekar

CSS stand for Cascading style sheet.

it used to applying style for both HTML and XML document.

there are three way applying style

1.internal style.
2.external style.
3.inline style.

here is the example for use css
<html>
<head>
<title>sample</title>
<style type="text/css">
.top-left
{
float:left;
width:400px;
height:100px;
background-color:#000;
}
.top-right
{
float:left;
width:378px;
height:100px;
background-color:#000;
}
.body
{
float:left;
width:778px;
height:400px;
}
.bottom
{
float:left;
width:778px;
height:30px;
background-color:#000;
}
</style>
</head>
<body>
<div class="top_left">
</div>
<div class="top_right">
</div>
<div class="body">
</div>
<div class="bottom">
</div>
</body>
</html>

Is This Answer Correct ?    7 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you get web browser’s details using PHP?

969


What is php and its features?

1057


What is the best way to avoid email sent through php getting into the spam folder?

994


How to open a file in php?

1076


Tell me what is the meaning of a final class and a final method?

1128


How do I end a php session?

943


Why many companies are switching their current business language to php?

1114


What is super () python?

1026


What are the types of variables in php?

1069


Is it possible to use com component in php?

980


What are php magic methods?

998


Is PHP runs on different platforms (Windows, Linux, Unix, etc.)?

1049


what is constructor

1608


Differences between get, post and request methods ?

972


How to reset/destroy a cookie in php?

967