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

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...