TUTORIAL: Using seamless tiles with CSS: Part Two
Thursday, May 31st, 2007Again, if you aren’t familiar with using CSS for layout, you may want to reference GLISH or W3SCHOOLS for further explanation. I will also be using raw code, as I always do.
We don’t need no stinking Dreamweaver…
To keep this tutorial simple, I am just going to use the basic tags in the html file, and use inline styles. Clearly, for a live web page, you will want your Doctype, meta tags and other info in the header, and use an external CSS file, but it’s not necessary to make this example work. So, that being said, create a new .html file in notepad or your favorite text editor, saving it as index.html in your folder from part one of this tutorial. Here’s the base code for it, which I will explain:
<html>
<head>
<title>My first pure CSS/seamless tile page</title>
<style type=”text/css” media=”screen”>
(more…)
