|
|
|
Use this tool to learn about websites, specifically the one you just entered.
If you find some aspect of it inappropriate it is not our fault.
If you are the owner of this website: yes we are a real search engine, we do have a real web crawler called FyberSpider and you can block it if you feel the urge.
We are in the process of updating this tool. Until we are done just use our search results to check the inclusion status of your site.
Submit your site to major search engines within 48 hours.
Find out if your site has been cataloged by top search engines for only $8.99.
Below you will see site info taken directly from the URL you entered in real time. This is also known as our URL Breakdown tool and can be used independently of our site info tool.
mezzoblue § Friday Challenge
This is just a sample of the content found on this website. Please visit the website to read the entire page.
"Skip to: Navigation Content Sidebar Footer
mezzoblue
ISSN #1708-0789
Home
Archives
Icons
About
Contact
57d
Recent Entries
Archives
Posts only
Profile Madness , May 19 2009 34
Font Embedding Now , May 7 2009 83
Switched , Apr 20 2009 77
Chalkwork Adoption Fund Drive , Apr 1 2009
Sprite Optimization , Jan 27 2009 54
Graceful Blame , Jan 6 2009 27
86
4
Weblog Entry
Friday Challenge
January 23, 2004
Whether it’s a deceptively simple problem or a case of being too close to the code to see the easy answer, I’ve been struggling with this one problem on and off for months now:
Is it possible to use floats to position a fixed-width sidebar on the right of a page, with a liquid content area, if the content comes before the sidebar in the markup?
Floating, and not absolute positioning is necessary for the sake of a clearing footer. It’s easier to see what I’m after by looking at the code:
<div id="content">
...
</div>
<div id="sidebar">
...
</div>
<div id="footer">
...
</div>
Corresponding CSS:
#content {
float: left;
margin-right: 210px;
}
#sidebar {
width: 200px;
float: right;
}
#footer {
clear: both;
}
Simple, right? Should work? Well, check the test page . If the order of the content and sidebar div s is reversed (and the float is switched accordingly), then it works like a charm .
But why should the sidebar need to go before the content in the code order? “Skip nav” links can route around this if absolutely necessary, but CSS is about freeing presentation from content after all.
Note that floats are reliant on code order, and do work best with defined widths, but with the proper CSS you "
....
read entire page
|
Links to Pages on Other Domain Names
|
|
Links to Pages on the Same Domain Name
|
|