My latest project at work is a bit confidential, but I can say that it has me designing a webpage. I grew up on this stuff and I’ve almost entirely self-taught myself it. This time, I was given the design prototype, and didn’t have to worry about the actual design of the document.
But it was still a huge bitch. I began by reading up on some extra CSS articles. Maybe this time I’ll try absolute positioning instead of floating divs. It has its own issues. Creating web pages is fun for me … up until I run into the issues. I seems the W3C specs aren’t designed to make things easy for web designers. Some of the most common practices in web design are using CSS specs that aren’t designed specifically for layouts. Absolute positioning is generic – it’s useful for positioning arbitrary elements, which has a lot of use in layout design, but it has limitations and problems. Using floating divs and wrappers and margins to create a particular layout is using these tools for something other than what they are design for.
Take float – it’s a property to make text flow around an object. It wasn’t designed to create columns on a webpage. And there’s no CSS property that creates columns, or a header. In simple cases and the beginnings of large projects, working with a web layout seems simpler than a desktop application layout. All you need are some elements and style rules – no worry about creating objects and adding them and listening for events.
But I’m beginning to wish we had a better approach to creating webpage layouts. Something that’s actually designed to create web forms and two-column pages. The SWING library for Java is a good example. It was designed to create layouts for people to use an application. CSS is designed to style documents. It does have its uses, and that is styling documents. But there are a lot of cases where that doesn’t apply. I would guess that the majority of uses of CSS are either web applications or websites (with columns, headings, footers, and the whole bit) I have no clue what the actual distribution is, or if even the majority of cases are that way, actually, but you can’t argue that there’s a lot of cases like that. And CSS simply doesn’t lend itself well to that.
I’m not saying to abolish CSS. It needs to be improved though, perhaps split into separate specifications. Give me something where I can layout a page as easily and reliably as I could with a table, without the actual horrible atrocities of table design. I’d like something where I can say “this element is going to be a left column that spans from below the header to the bottom of the document” and “the element is going to be a horizontal menu whose items are centered and spaced evenly”. I’m sure some would say that was too specific. Rules that would be used to do that simply would be very narrow-focused. But there are so many cases where this could be used.
CSS is about separating the content from the design. But we should be able to separate parts of a CSS document: style and layout. Fonts, colours, paragraph spacing, etc, are all design properties. Floating divs and absolutely positioned footers are all things that make up a layout. I haven’t looked into to HTML5 much, so maybe there’s a step in the right direction, but what about something like this?
<html>
<head>
<title>FGC Sample</title>
<style>
page {
width: 800px;
horizontal-position: center;
}
header {
width: page-width;
height: 100px;
color: white;
background-color: black;
}
navigation {
nav-style: horizontal;
item-spacing: equal;
item-position: center;
background-color: blue;
}
item {
color: white;
}
item:hover {
font-weight: bold;
background-color: green;
}
content#aside {
type: column;
top: auto;
bottom: document-bottom;
width: 300px;
position: left;
}
content#aside h1 {
text-transform: uppercase;
}
content#main {
type: column;
width: auto;
position: center;
height: auto;
color: black;
background-color: blue;
}
content#main #execphoto {
float: left;
margin: 5px;
}
footer {
width: page-width;
font-size: 0.8em;
font-style: italic;
color: grey;
background-colour: black;
}
</style>
</head>
<body>
<page>
<header><img src="header.png" /></header>
<navigation>
<item href="#">Home</item>
<item href="#">Products</item>
<item href="#">About</item>
<item href="#">Contact</item>
</navigation>
<content id="aside">
<h1>New product launched!</h1>
<p>We have launched a new product XXBBYY</p>
<p>Herp derp derp</p>
<p>FARBLE GARBLE FBRARFGARFGB</p>
</content>
<content id="main">
<h1>Welcome to FarbleGarb CO</h1>
<img id="execphoto" src="mrfarble.png" />
<p>At FGC we have pride and garbs to make you garble in pride.</p>
<p>These paragraphs will float around that image like in regular CSS</p>
</content>
<footer>Copyright © FarbleGarb 2009</footer>
</page>
</body>
</html>
I don’t even have to tell you what it would look like, really, because the CSS explains it. Not perfectly, perhaps, but that’s why I’m not working with the W3C to design the next specs. I’m not even that great of a web designer. But I do know what problems I run into when I’m working on a website, and all the articles across the web that take a genius to get a properly flowing 3-column layout with variable length columns and a footer.
I doubt there’s going to be anything like this soon, or even not soon. CSS3 is barely implemented, and IE still has troubles with most of CSS2 and some of CSS1. But I can dream (and rant), right? One day I’m going back to party like its ‘99 and make a table-based layout. Yes, <font> tags and all.
(I’m extremely interested in other folk’s opinions. I know there are a lot better web designers out there, and I know they don’t read this blog. But if there’s any post that I think deserves commentary and discussion, it’s this one.)
Perhaps you are looking to use a CSS Framework, rather than having to write all of CSS on your own. There are a few listed on http://en.wikipedia.org/wiki/CSS_framework
Tony, he pops out of nowhere! That addresses one part of my post, getting me something that actually helps solve my problem. I didn’t even know these existed, that’s awesome! I’ll take a look into that. Have you worked with any that you’d recommend?
I still think that CSS as it is right now isn’t as well suited to website design as it should be for today’s webpages. Sure, you could do some amazing things with it, but those are “clever” things, and getting simple concepts to work shouldn’t require “clever” work.
fuckin’ signed.
CSS takes magic of the deepest kind to implement what should be simple. i will be looking into these css frameworks.
Look at these pages, too:
http://www.positioniseverything.net/guests/3colcomplex.html
http://www.positioniseverything.net/piefecta-rigid.html
Hrm, The whole XHTML/CSS nightmare is one of the reasons I don’t enjoy doing web dev. There needs to be a better way, but then you’ll just run into non-compliant browsers and other crap anyways :/
I used a combination of this method and floating divs (to nest a header/two column page in the right column).
http://matthewjamestaylor.com/blog/ultimate-2-column-left-menu-pixels.htm
Oh come on dude! The fruit which you have to reach furthest for always tastes the sweetest
Andy Walpole´s last blog ..The internet 10 years ago this month – January 2000
Ha! Your logic fails in many cases? The fruits at the top of the tree are usually pecked at by birds, and I’m QUITE a skilled climber, thus I can GET IT THERE and have a fruit quite within reach of my grasping devices. To correct your, the fruit which you have IN YOUR MOUTH always tastes the sweetest.
In seriousness, I eventually found a method that worked, as I said. I’m using a combination of wrapper divs according to above post, and floating blocks for content.
I’ve given up on going for 100% semantic HTML. It’s not semantic if you have
Thanks for commenting. I look forward to hearing your thoughts again!
Alternatively, seeing as how you are computer science, why don’t you write a backend layout-templating system? Allow it to autogenerate the layout based upon a simple layout design language of your choice, and it will automatically generate the layout CSS for you.
Also, remember that your HTML can still be semantically correct and your CSS can be messed up by including your layout definitions in it, provided you use your tags in a semantic fashion (such as using a div where a page division should go, a span pair for inline sections, strong and emphasis tags, etc.).
As far as a layout specification, between HTML5 and CSS3, I do believe they are doing some work in trying to make semantic markup easier (especially with the canvas tag).
Just some food for thought.
That is a good idea, to try and make a backend like that. But my boss wouldn’t approve, and I have so little time for hobby programming. And if I did, a website layout generator would NOT be my first choice. It’s really a love-hate thing, me and web design. And a throttle-it-against-the-wall thing, too.
(but thanks for commenting, bro!)