| Magic HTML Writer |
Screen Shots / Cascading Style Sheets / CSS Builder: Body and Background Properties
When you click the Make button, the following code is inserted into your HTML document:
color : black; background-color : lightgreen; background-image : url(bgredpencil.jpg); background-repeat : repeat-x; background-attachment : fixed; background-position : center center; cursor : auto; |
Each color button brings up its own color tool for easy visual selection. Over 150 standard color names are also supported.
The above CSS properties list was used in this page by placing it in a style markup located in the head of the html document--like this:
<style type='text/css'>
<!--
body {
color : black;
background-color : lightgreen;
background-image : url(bgredpencil.jpg);
background-repeat : repeat-x;
background-attachment : fixed;
background-position : center center;
cursor : auto;
}
-->
</style>
|