I have seen that many people are using tableless layouts , how do they make it? is it possible to make it in dreamweaver?
I have seen that many people are using tableless layouts , how do they make it? is it possible to make it in dreamweaver?
Maybe use Adobe Photoshop to make layout. Slice your image (web template) with Adobe into pieces (cut every button and image link).
Next, use DIV when you try to stick your image to your design.
Yes, DW fully supports tableless layouts. Your content will be included by <div> instead of <tr>. With the use of external stylesheet (css) you may format and position all your DOM objects easily. Tableless layout provide shorter code, faster load so better experience.
Thanks
Tableless layouts are a requirement to meet the WCAG accessibility guidelines at AA level conformance. All new web pages should be tableless. These are much better than table layouts and can b created oin an good package such as Dreameaver.
Seen a good post - give some reputationKeeping the forum clean - SPAMMERS BEWARE!!
dreamweaver can be use as your html editor to make table less css based layout.. but you will need to do it on code view.
regards,
Nadir Ali Shah
Tableleless layouts are controlled by using
say it it is a box that says item here and has a font size of 12 px using arial with off black font with 50 px from the top and 20 px from the left side of the page
<div id="item_here">item here</div>
then the css would be
#item_here{font-size: 12px; font-family: arial; color: #333; margin-top: 50px; margin-left: 20px;}
TO sum it up: CSS and XHTML.
External styles are used for the whole, multiple-page website. There is a separate CSS file, which will simply look something like:
p {
color: red;
}
a {
color: blue;
}
If this file is saved as "web.css" then it can be linked to in the HTML like this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>CSS Example</title>
<link rel="stylesheet" type="text/css" href="web.css" />
Source: WebDesignCrap.info
thanks was very information.. really like the source url.
Just replace tables with divs.
Tableless layouts are a necessity to gather the WCAG accessibility guidelines at AA point conformance. All newly web pages should be tableless.
Bookmarks