Tuesday, November 29, 2011

Making A Drop In Box With CSS

Creating a content box on your website can be quite easy using cascading style sheets or CSS. Here is a quick guide on how to create a custom CSS content box.

Click "Start," "All Programs" and click "Notepad" to open the text editor.

Click "File," "New" to open a new file. Copy and paste the following script:

div.dropinbox{
width:400px;
height:230px;
border:1px solid black;
padding:5px;
background:#e7e7e7;
}

Save the file as an "HTML" file and add it to your site.

No comments:

Post a Comment