User Matthew James Taylor - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:05:05Zhttp://stackoverflow.com/feeds/user/83389http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/743214/how-do-i-resize-a-google-map-with-javascript-after-it-has-loaded2How do I resize a Google Map with JavaScript after it has loaded?Matthew James Taylor2009-04-13T06:54:46Z2009-09-23T15:59:37Z
<p>I have a 'mapwrap' div set to 400px x 400px and inside that I have a Google 'map' set to 100% x 100%. So the map loads at 400 x 400px, then with JavaScript I resize the 'mapwrap' to 100% x 100% of the screen - the google map resizes to the whole screen as I expected but tiles start disappearing before the right hand edge of the page.</p>
<p>Is there a simple function I can call to cause the Google map to re-adjust to the larger size 'mapwrap' div? </p>
http://stackoverflow.com/questions/1210588/regex-for-dynamic-goal-page-in-google-analytics0Regex for dynamic goal page in Google AnalyticsMatthew James Taylor2009-07-31T03:44:59Z2009-07-31T04:58:06Z
<p>I have a page that I want to set as a goal in Google Analytics but there is a part of the URL that will be a random numnber (xxxxx). How do I specify such a URL with regex?</p>
<p>/products/sf/cart/rf/xxxxx/f/477</p>
http://stackoverflow.com/questions/1067275/are-there-any-code-libraries-that-validate-convert-blog-comments-to-xhtml-strict0Are there any code libraries that validate/convert blog comments to XHTML strict?Matthew James Taylor2009-07-01T04:29:50Z2009-07-02T18:26:31Z
<p>I am working on a website in PHP where people can make comments similar to a blog, and I only want particular tags to be allowed. Are there any pre-built libraries that process comments and produce valid XHTML Strict code? I would need to do this in JavaScript so I can generate a live preview like Stack Overflow, plus in PHP before saving it to a MySQL database.</p>
<p>The allowed HTML tags will be: strong, em, blockquote, and links (rel=nofollow not required)</p>
<p>One way would be to allow people to directly enter the HTML into the comment field but I would prefer to use a simple mark up something like this (can be different - this is an example):</p>
<pre><code>*strong*
_em_
[blockquote]
http://www.link.com
</code></pre>
<p>I want line breaks to be converted to <code><br /></code>.</p>
<p>Are there any code libraries that do the above?</p>
http://stackoverflow.com/questions/1066511/css-mouse-over-overlapping-tabs/1066643#10666430Answer by Matthew James Taylor for CSS mouse-over overlapping tabs?Matthew James Taylor2009-06-30T23:37:51Z2009-06-30T23:37:51Z<p>You could use relative positioning to move each tab to the left so it appears over the one before. For this to work correctly you will need to incrementally increase the right position each time eg:</p>
<p><strong>The HTML</strong></p>
<pre><code><ul>
<li id="tab1"><a href="#">Tab1</a></li>
<li id="tab2"><a href="#">Tab2</a></li>
<li id="tab3"><a href="#">Tab3</a></li>
<li id="tab4"><a href="#">Tab4</a></li>
</ul>
</code></pre>
<p><strong>The CSS</strong></p>
<pre><code>#tab2 {
position:relative;
right:30px; /* overlap distance */
}
#tab3 {
position:relative;
right:60px; /* double overlap distance */
}
#tab4 {
position:relative;
right:90px; /* triple overlap distance */
}
</code></pre>
http://stackoverflow.com/questions/1058754/how-to-keep-an-unordered-list-centered-within-the-screen/1061879#10618790Answer by Matthew James Taylor for How to keep an unordered list centered within the screen??Matthew James Taylor2009-06-30T05:30:09Z2009-06-30T05:30:09Z<p>It's possible to <a href="http://matthewjamestaylor.com/blog/beautiful-css-centered-menus-no-hacks-full-cross-browser-support" rel="nofollow">center a floated list</a> by using relative positioning too.</p>
http://stackoverflow.com/questions/1022695/difference-between-import-and-link-in-css/1046857#10468570Answer by Matthew James Taylor for Difference between @import and link in CSSMatthew James Taylor2009-06-26T00:30:42Z2009-06-26T00:30:42Z<p>This article may be of use here: <a href="http://matthewjamestaylor.com/blog/adding-css-to-html-with-link-embed-inline-and-import" rel="nofollow">4 methods of adding CSS to HTML: link, embed, inline and import</a></p>
http://stackoverflow.com/questions/1042978/css-overflow-with-safari-chrome-and-ie-6/1046813#10468130Answer by Matthew James Taylor for CSS, overflow with safari, chrome and IE 6Matthew James Taylor2009-06-26T00:19:44Z2009-06-26T00:19:44Z<p>Internet explore has problems with <code>overflow:hidden;</code> when the element has percentage dimensions. To fix this you need to also put a <code>position:relative;</code> on the element for it to work.</p>
http://stackoverflow.com/questions/1045830/dealing-with-firefox-and-internet-explorers-differences/1046792#10467920Answer by Matthew James Taylor for Dealing with Firefox and Internet Explorer's DifferencesMatthew James Taylor2009-06-26T00:09:31Z2009-06-26T00:09:31Z<p>For best results do your development in Firefox (because it is standards compliant) and periodically cross-browser check in different versions of IE to make sure it works OK there too.</p>
<p>You shouldn't need to have a completely separate CSS file for IE, but in a complicated layout you may need to have a small set of overriding rules to make IE behave - expose those rules to IE only with <a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">IE Conditional Comments</a>. Never use CSS hacks, they are unnecessary and error prone. </p>
http://stackoverflow.com/questions/1036200/how-do-you-change-a-div-with-another-div-onmouseover/1042300#10423000Answer by Matthew James Taylor for How do you change a div with another div, onmouseover?Matthew James Taylor2009-06-25T05:21:29Z2009-06-25T05:21:29Z<p>A more semantic approach may be to use merkuro's method but with a definition list. This way the text and the links are tied together with some meaning. It will also look good with CSS turned off.</p>
<p><strong>The HTML</strong></p>
<pre><code><dl class="tool">
<dt>Test goes here</td>
<dd>Link 1 | Link 2 | Link 3</dd>
</dl>
</code></pre>
<p><strong>The CSS</strong></p>
<pre><code>dl.tool,
dl.tool dt {
margin:0;
padding:0;
}
dl.tool dd {
margin:0;
padding:0;
display:none;
}
dl.tool:hover dt {
display:none;
}
dl.tool:hover dd {
display:block;
}
</code></pre>
<p>Of course that won't work in old versions of Internet Explorer so you can add some JavaScript to replicate the effect with a 'hover' class:</p>
<p><strong>The HTML</strong></p>
<pre><code><dl class="tool" onmouseover="this.className='tool hover'" onmouseout="this.className='tool'">
<dt>Test goes here</td>
<dd>Link 1 | Link 2 | Link 3</dd>
</dl>
</code></pre>
<p><strong>The CSS</strong></p>
<pre><code>dl.tool,
dl.tool dt {
margin:0;
padding:0;
}
dl.tool dd {
margin:0;
padding:0;
display:none;
}
dl.tool:hover dt,
dl.tool.hover dt {
display:none;
}
dl.tool:hover dd,
dl.tool.hover dd {
display:block;
}
</code></pre>
<p>I've used inline JavaScript here for the demo but you should use unobtrusive JavaScript in the final product and only expose it only for IE. :)</p>
http://stackoverflow.com/questions/725261/what-is-the-semantic-web17What is the semantic web?Matthew James Taylor2009-04-07T11:42:22Z2009-06-23T07:17:35Z
<p>I've heard a lot about the semantic web but I'm still not exactly sure what it is. How will it be different to the web we know now?</p>
http://stackoverflow.com/questions/1015475/weird-ie7-problem/1015919#10159191Answer by Matthew James Taylor for Weird IE7 ProblemMatthew James Taylor2009-06-19T00:49:39Z2009-06-19T00:49:39Z<p>Perhaps it is an opacity problem? It may have nothing to do with the z-index?</p>
http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015909#10159090Answer by Matthew James Taylor for How to get Floating DIVs inside fixed-width DIV to continue horizontally?Matthew James Taylor2009-06-19T00:41:32Z2009-06-19T00:41:32Z<p>You need an extra div with a large width to contain the blocks, then they will extend wider than the container div and not drop down to a new line.</p>
<p><strong>The HTML:</strong></p>
<pre><code><div id="container>
<div id="width">
<div class="block">
<!-- contents of block -->
</div>
<div class="block">
<!-- contents of block -->
</div>
<div class="block">
<!-- contents of block -->
</div>
<!-- more blocks here -->
</div>
</div>
</code></pre>
<p><strong>The CSS:</strong></p>
<pre><code>#container {
height: 275px;
width: 1000px;
overflow-x: auto;
overflow-y: hidden;
max-height: 275px;
}
#container #width {
width:2000px; /* make this the width you need for x number of blocks */
}
#container div.block {
float: left;
margin: 3px 90px 0 3px;
}
</code></pre>
http://stackoverflow.com/questions/948781/add-border-on-mouseover/948813#9488131Answer by Matthew James Taylor for Add border on mouseoverMatthew James Taylor2009-06-04T06:09:52Z2009-06-04T06:09:52Z<p>It may be better to swap classes on the table instead of editing the CSS properties directly - that would be a more scalable/extendable solution:</p>
<pre><code>table {
border:0;
}
table.border {
border:1px solid #000;
}
</code></pre>
<p>Of course your table will 'jump' in position 1px when the border is added so maybe it's better to use margin or a white border when you are not hovering:</p>
<pre><code>table {
border:1px solid #fff;
}
table.border {
border:1px solid #000;
}
</code></pre>
<p>Or best yet, if you don't need to be compliant with IE6 you can do it all with pure CSS:</p>
<pre><code>table {
border:1px solid #fff;
}
table:hover {
border:1px solid #000;
}
</code></pre>
<p>This would be the best/simplest/scalable approach!</p>
http://stackoverflow.com/questions/938169/different-dropdownlist-component/938253#9382531Answer by Matthew James Taylor for Different dropdownlist component.Matthew James Taylor2009-06-02T07:04:04Z2009-06-02T07:04:04Z<p>Firstly I would have the popout div fly above rather than below. The reason for this is that it will automatically be 'above' (in z-index terms) the elements above so it won't get covered up by successive table rows.</p>
<p>Secondly you will want to have something like this:</p>
<pre><code><div class="action">
<div class="select"><!-- select box here --></div>
<div class="popout"><!-- stuff here --></div>
</div>
</code></pre>
<p>Then activate it with CSS like this:</p>
<pre><code>div.action {
width:75px;
height:30px;
position:relative;
}
div.select {
position:absolute;
top:0;
left:0;
}
div.popout {
position:absolute;
left:0;
bottom:30px;
width:300px;
display:none; /* it will be revealed on hover */
}
div.action:hover div.popout {
display:block;
}
</code></pre>
<p>To make this work in old versions of IE you can add this JavaScript to the action div:</p>
<pre><code><div class="action" onmouseover=""this.className='action hover'" onmouseout="this.className='action'">
</code></pre>
<p>Then use a class of hover instead of the state:</p>
<pre><code>div.hover div.popout {
display:block;
}
</code></pre>
<p>I hope that's what you meant! :)</p>
http://stackoverflow.com/questions/938083/why-do-browsers-insert-tbody-element-into-table-elements/938218#9382180Answer by Matthew James Taylor for Why do browsers insert tbody element into table elements?Matthew James Taylor2009-06-02T06:49:42Z2009-06-02T06:49:42Z<p>Interestingly if you are crawling through the dom with JavaScript the extra tbody can trip an unsuspecting person up if they don't know about it. It means that content in the table cells is nested an extra element deep!</p>
http://stackoverflow.com/questions/927889/whats-better-using-html-css-edited-by-hand-or-using-design-programs-and-why/928750#9287500Answer by Matthew James Taylor for Whats better using HTML/CSS edited by hand or using design programs? and why?Matthew James Taylor2009-05-30T01:47:36Z2009-05-30T01:47:36Z<p>The absolute best is when you <strong>understand what you are doing</strong> - you can only do this by <strong>coding by hand</strong>.</p>
<p>If you don't know HTML or CSS and you use a WYSIWYG editor then how can you be sure everything is right? You can't!</p>
<p>If you have a good understanding of HTML and CSS why would you use a WYSIWYG editor? They make things harder because you can't see the code and extra tags and rules get inserted without you knowing.</p>
<p>Coding by hand is always the best.</p>
http://stackoverflow.com/questions/924564/simple-are-html-script-elements-allowed-to-be-external-even-when-in-the-body/924579#9245798Answer by Matthew James Taylor for (Simple) Are HTML script elements allowed to be external even when in the body?Matthew James Taylor2009-05-29T05:51:31Z2009-05-29T05:51:31Z<p>Yes. This is how a lot of widgets work like Google Maps. Make sure you specify the type though:</p>
<pre><code><script type="text/javascript" src="action.js"></script>
</code></pre>
http://stackoverflow.com/questions/924483/what-makes-a-good-programming-blog-post/924568#9245683Answer by Matthew James Taylor for What makes a good programming blog post?Matthew James Taylor2009-05-29T05:48:17Z2009-05-29T05:48:17Z<p>I find that detailed articles that explain how to solve common programming problems work for me. Anything lighthearted or funny may give you a spike in traffic but it will die off just as quick. Really useful articles will keep generating traffic for a long time.</p>
http://stackoverflow.com/questions/557827/whats-the-need-for-xhtml/924554#9245540Answer by Matthew James Taylor for What's the need for XHTML?Matthew James Taylor2009-05-29T05:43:46Z2009-05-29T05:43:46Z<p>XML is a data interchange format - this is perfect for building websites because after all we are dealing with information and this info needs to be crawled and understood by computers (such as search engines). </p>
http://stackoverflow.com/questions/923931/do-social-media-websites-help-seo-1Do social media websites help SEO? [closed]Matthew James Taylor2009-05-29T00:47:23Z2009-05-29T00:47:23Z
<p>I know that inbound links help SEO so my question is more about the use of social media websites and widgets. For example if I include YouTube videos or Flickr photos on my website is this recognised by Google and considered in their algorithm at all?</p>
http://stackoverflow.com/questions/919065/css-full-height/919374#9193740Answer by Matthew James Taylor for css full height?Matthew James Taylor2009-05-28T05:54:23Z2009-05-28T05:54:23Z<p>What you need is the <a href="http://matthewjamestaylor.com/blog/perfect-3-column.htm" rel="nofollow">Perfect Liquid Layout in Percentage widths</a>, <a href="http://matthewjamestaylor.com/blog/ultimate-3-column-holy-grail-ems.htm" rel="nofollow">em widths</a>, or <a href="http://matthewjamestaylor.com/blog/holy-grail-no-quirks-mode.htm" rel="nofollow">pixel widths</a>.</p>
http://stackoverflow.com/questions/919299/ie-space-between-rows/919360#9193601Answer by Matthew James Taylor for IE space between rowsMatthew James Taylor2009-05-28T05:48:05Z2009-05-28T05:48:05Z<p>I would recommend using a list to define your rows rather than a bunch of divs because it is more semantic. This could also help solve the space problem you're having.</p>
http://stackoverflow.com/questions/918700/is-there-a-reliable-way-to-position-content-off-to-the-sides-of-a-div-and-have-i/918884#9188840Answer by Matthew James Taylor for Is there a reliable way to position content off to the sides of a div, and have it only appear if the user's resolution allows it?Matthew James Taylor2009-05-28T02:02:52Z2009-05-28T02:02:52Z<p>Yes you can do this but only on the left side of the screen.</p>
<p>If you have any content on the right (outside of the viewport) the browser will add horizontal scroll bars. The only exception to this is if you turn off the scroll bars but this cannot be done only horizontally across all browsers.</p>
<p>Back to the left side idea... Elements positioned off the left side of the viewport do not cause a horizontal scrollbar. You can have a fixed width layout that is centered on the screen (auto margins on either side) then from within this area you can absolutely position a new column in the left space. If the browser viewport is narrow you won't see it, if it's wide it will be completely visible and usable. The only problem is if it's half-way in the middle - your left column will be chopped off - this could look a bit messy!</p>
<p>Another alternative is to detect the width of the viewport with JavaScript and only show the column if there is room?</p>
http://stackoverflow.com/questions/918746/unobtrusive-javascript-rendered/918856#9188561Answer by Matthew James Taylor for Unobtrusive javascript renderedMatthew James Taylor2009-05-28T01:50:28Z2009-05-28T01:50:28Z<p>JavaScript can be used to render HTML (add elements to the DOM) and this is essentially what the solution does. However if you view the source of the page after the <code>onchange</code> event has been added you won't see it - this is because browsers show the unaltered DOM only.</p>
<p>If you want to browse the updated DOM then download <a href="http://getfirebug.com" rel="nofollow">Firebug</a> for Firefox. I can't recommend this tool enough!</p>
http://stackoverflow.com/questions/909606/make-th-clickable-setting-a-a-element-inside-the-th-on-100-width-height/914075#9140750Answer by Matthew James Taylor for Make <th> clickable: Setting a <a> element inside the <th> on 100% width & heightMatthew James Taylor2009-05-27T05:22:10Z2009-05-27T05:22:10Z<p>You could set an arbitrary height to each link to quite long: (6em maybe?) then set a max height on the table cell <code>th</code>'s to something shorter: (3em?) with an overflow hidden. This way all the links will be taller than the table cell is high but chopped off by the overflow hidden - they should all be pink and clickable. Make sure you set a <code>display:relative;</code> on the <code>th</code>'s otherwise old versions of IE won't chop off any overflow. Good luck :)</p>
http://stackoverflow.com/questions/913230/css-and-div-tag-layout-problems/914042#9140420Answer by Matthew James Taylor for css and div tag layout problemsMatthew James Taylor2009-05-27T05:09:37Z2009-05-27T05:09:37Z<p>Use relative positioning to swap the positions of the divs after they have been floated:</p>
<p><strong>The HTML</strong></p>
<pre><code><div id="top-bar">
<div id="leftTop">
LEFT
</div>
<div id="centerTop">
CENTER
</div>
<div id="rightTop">
RIGHT
</div>
</div>
</code></pre>
<p><strong>The CSS</strong></p>
<pre><code>#leftTop {
width:33%;
float:left;
}
#centerTop {
width:33%;
float:right;
position:relative;
right:33%;
}
#rightTop {
width:33%;
float:right;
position:relative;
left:33%;
}
</code></pre>
<p>I use the same process in my <a href="http://matthewjamestaylor.com/blog/perfect-3-column.htm" rel="nofollow">Perfect Liquid Layouts</a> to change the <a href="http://matthewjamestaylor.com/blog/equal-height-columns-cross-browser-css-no-hacks" rel="nofollow">column source ordering</a>.</p>
http://stackoverflow.com/questions/746531/is-it-wrong-to-change-a-block-element-to-inline-with-css-if-it-contains-another-b3Is it wrong to change a block element to inline with CSS if it contains another block element?Matthew James Taylor2009-04-14T06:30:06Z2009-05-26T10:13:12Z
<p>I know it's wrong to put a block element inside an inline element, but what about the following?</p>
<p>Imagine this valid markup:</p>
<pre><code><div><p>This is a paragraph</p></div>
</code></pre>
<p>Now add this CSS:</p>
<pre><code>div {
display:inline;
}
</code></pre>
<p>This creates a situation where an inline element contains a block element (The div becomes inline and the p is block by default)</p>
<p>Are the page elements still valid?</p>
<p>How and when do we judge if the HTML is valid - before or after the CSS rules are applied?</p>
http://stackoverflow.com/questions/909121/how-to-come-back-to-the-previous-page/909186#9091860Answer by Matthew James Taylor for How to come back to the previous pageMatthew James Taylor2009-05-26T06:29:45Z2009-05-26T06:29:45Z<p>Try posting the form to itself (the same page) instead of another page, then if there is an error you don't have to 'go back' because you are already there! Simply print out the form again and fill in the values that were posted along with a message that something in the form didn't validate.</p>
http://stackoverflow.com/questions/907691/making-three-columns-layout-with-fixed-with-sidebars-using-yui-grids/908704#9087041Answer by Matthew James Taylor for Making three columns layout, with fixed with sidebars using yui-gridsMatthew James Taylor2009-05-26T02:32:18Z2009-05-26T02:32:18Z<p>You could try this <a href="http://matthewjamestaylor.com/blog/holy-grail-no-quirks-mode.htm" rel="nofollow">liquid layout</a> instead?</p>
http://stackoverflow.com/questions/908637/overlay-div-edit-image-on-a-div-td-element/908668#9086681Answer by Matthew James Taylor for Overlay div "edit image" on a div, td elementMatthew James Taylor2009-05-26T02:20:12Z2009-05-26T02:20:12Z<p>Put your 'edit image' after the content so it will appear above the actual content (elements that come later in the source have a higher z-index:</p>
<p>The HTML</p>
<pre><code><td>
<div class="editable">
<p>This would be the normal text that is editable</p>
<img class="editimg" src="/edit.png"/>
</div>
</td>
</code></pre>
<p>The CSS</p>
<pre><code>div.editable {
width:100%;
position:relative; /* this allows the img to be positioned relative to the div */
}
div.editable img.editimg {
position:absolute;
top:5px;
right:5px;
}
</code></pre>
http://stackoverflow.com/questions/1067275/are-there-any-code-libraries-that-validate-convert-blog-comments-to-xhtml-strict/1067339#1067339Comment by Matthew James Taylor on Are there any code libraries that validate/convert blog comments to XHTML strict?Matthew James Taylor2009-07-01T05:28:27Z2009-07-01T05:28:27ZThanks elviejo, it looks like HTML Purifier is exactly what I need.http://stackoverflow.com/questions/1067275/are-there-any-code-libraries-that-validate-convert-blog-comments-to-xhtml-strict/1067288#1067288Comment by Matthew James Taylor on Are there any code libraries that validate/convert blog comments to XHTML strict?Matthew James Taylor2009-07-01T04:39:49Z2009-07-01T04:39:49ZThanks jason but these are way too complicated - I need a very simple solution that doesn't need a menu of controls etc.http://stackoverflow.com/questions/1066511/css-mouse-over-overlapping-tabs/1066643#1066643Comment by Matthew James Taylor on CSS mouse-over overlapping tabs?Matthew James Taylor2009-07-01T04:03:14Z2009-07-01T04:03:14Z@Mark Yes, you need to make the anchor tags block and both the li and anchor tags should float to the left. If you float the li's to the right you will reverse the order of your tabs.http://stackoverflow.com/questions/1064964/how-do-i-centre-n-columns-using-css/1064980#1064980Comment by Matthew James Taylor on How do I centre n columns using CSS?Matthew James Taylor2009-07-01T00:10:13Z2009-07-01T00:10:13ZFor the columns div to be centered in old versions of Internet Explorer you will also need to have a text-align:center; on the columns' parent element.http://stackoverflow.com/questions/1058754/how-to-keep-an-unordered-list-centered-within-the-screenComment by Matthew James Taylor on How to keep an unordered list centered within the screen??Matthew James Taylor2009-06-30T05:32:39Z2009-06-30T05:32:39ZA list is used to list related things. the pipes "|" are not the things you are listing so they should be removed. You can add separators with background images or side borders on the other li elementshttp://stackoverflow.com/questions/1059614/simple-html-that-comes-out-looking-way-offComment by Matthew James Taylor on Simple HTML that comes out looking way off?Matthew James Taylor2009-06-30T00:36:44Z2009-06-30T00:36:44ZI agree Chris, That's an awful lot of HTML there for such a simple layout. A HTML list would be much more appropriate. http://stackoverflow.com/questions/1055875/how-can-i-make-just-ie-ignore-a-class/1055880#1055880Comment by Matthew James Taylor on How can I make just IE ignore a class?Matthew James Taylor2009-06-29T00:39:58Z2009-06-29T00:39:58ZMake sure you put the IE only CSS after the main CSS file otherwise it won't be overwritten.http://stackoverflow.com/questions/1044342/dropdown-menu-problem-when-resizing-the-browser/1044388#1044388Comment by Matthew James Taylor on Dropdown menu, problem when resizing the browserMatthew James Taylor2009-06-26T00:11:47Z2009-06-26T00:11:47ZI think min-width is the best solution here +1http://stackoverflow.com/questions/1039844/how-can-i-make-li-elements-flow-left-to-right-instead-of-top-to-bottom/1039866#1039866Comment by Matthew James Taylor on How can I make <li> elements flow left-to-right instead of top-to-bottom?Matthew James Taylor2009-06-25T04:43:28Z2009-06-25T04:43:28Z@Shore - Floating is probably best because then the elements are blocks which means you have more control over their styling.http://stackoverflow.com/questions/1036071/html-php-redirecting-example-com-blogs-to-example-com-blogs-phpComment by Matthew James Taylor on HTML, PHP - Redirecting example.com/blogs to example.com/blogs.phpMatthew James Taylor2009-06-24T02:22:52Z2009-06-24T02:22:52ZIf you have the same content accessible on two different URLs you might want to use the new canonical link in your HTML head to prevent duplicate content issues. See this post by Matt Cutts for more info: <a href="http://www.mattcutts.com/blog/canonical-link-tag/" rel="nofollow">mattcutts.com/blog/canonical-link-tag</a>http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015909#1015909Comment by Matthew James Taylor on How to get Floating DIVs inside fixed-width DIV to continue horizontally?Matthew James Taylor2009-06-23T12:48:04Z2009-06-23T12:48:04Z@Alex it's good to see a fellow Aussie on here! Thanks for the upvote ;)http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015909#1015909Comment by Matthew James Taylor on How to get Floating DIVs inside fixed-width DIV to continue horizontally?Matthew James Taylor2009-06-23T12:25:36Z2009-06-23T12:25:36Z@Ron you may be right, a span version could be best except it may not be valid HTML to put block-level elements inside inline elements. See this question: <a href="http://stackoverflow.com/questions/746531/is-it-wrong-to-change-a-block-element-to-inline-with-css-if-it-contains-another-b" rel="nofollow" title="is it wrong to change a block element to inline with css if it contains another b">stackoverflow.com/questions/746531/…</a>http://stackoverflow.com/questions/1015809/how-to-get-floating-divs-inside-fixed-width-div-to-continue-horizontally/1015860#1015860Comment by Matthew James Taylor on How to get Floating DIVs inside fixed-width DIV to continue horizontally?Matthew James Taylor2009-06-23T11:54:23Z2009-06-23T11:54:23ZMatt's original question stated that he wanted 'multiple floated divs' so a table solution is most probably not suitable.http://stackoverflow.com/questions/1015601/div-alignment-firefox-ie7-ie6Comment by Matthew James Taylor on Div Alignment FireFox, IE7, IE6Matthew James Taylor2009-06-19T00:46:25Z2009-06-19T00:46:25ZThis would be easy to do, what order do you want the divs to appear in the HTML source? can you number them?http://stackoverflow.com/questions/1015601/div-alignment-firefox-ie7-ie6/1015620#1015620Comment by Matthew James Taylor on Div Alignment FireFox, IE7, IE6Matthew James Taylor2009-06-19T00:45:22Z2009-06-19T00:45:22ZDown voted for using tables!