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 does html form submit work?

860


How are php sessions stored?

924


What is the difference between for and foreach loop in php?

1034


How to write the form tag correctly for uploading files?

912


What is $$ in php?

904


What is the difference between php and core php?

885


What is the capacity of mysql database?

1004


How can we set and destroy the cookie in php?

916


What difference between require() and require_once()?

1024


What are the features of php 7?

970


Does php support multiple inheritance?

917


List few sensible functions in PHP?

936


What is difference between strstr() and stristr()?

965


What are the rules to determine the “truth” of any value which is not already of the boolean type?

901


What is meant by ‘passing the variable by value and reference' in php?

935