Jump to content

UniHTMLFrame background color


gusrac

Recommended Posts

Usage:

 

background-color: #ddd;

 

Example:

 

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>

<style>
body {
  background-color: #ddd;
  color:#222;
}
</style>

</head>

<body>
 <div style="text-align:center;background-color: #999;">Hello World!</div>
</body>

</html>

Link to comment
Share on other sites

Usage:

 

background-color: #ddd;

 

Example:

 

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en">
<head>

<style>
body {
  background-color: #ddd;
  color:#222;
}
</style>

</head>

<body>
 <div style="text-align:center;background-color: #999;">Hello World!</div>
</body>

</html>

 

its works by adding a few properties like this

 

<div style="color: #222; background-color: #ddd; width:100%; height:100%;">

 

 

thank you

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...