User David Kolar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T07:44:40Z http://stackoverflow.com/feeds/user/3283 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1682741/my-website-becomes-distorted-on-large-monitors/1682861#1682861 3 Answer by David Kolar for My website becomes distorted on large monitors David Kolar 2009-11-05T19:08:50Z 2009-11-05T19:08:50Z <p>The first thing I would check is whether other sites also look distorted on the large monitor, and not just yours. Just like wide-screen TVs in sports bars, there are many mis-configured wide-screen monitors that are stretching 4x3-ratio display resolutions over 16x9-ratio screen sizes. I see it all the time.</p> http://stackoverflow.com/questions/1543937/have-you-used-any-databases-only-hosting-service/1634495#1634495 1 Answer by David Kolar for Have you used any databases only hosting service? David Kolar 2009-10-28T00:23:45Z 2009-10-28T00:23:45Z <p>A few weeks after the question was posted, Amazon announced a beta of "Amazon Relational Database Service (Amazon RDS)." It acts like MySQL 5.1. </p> <p><a href="http://aws.amazon.com/rds/" rel="nofollow">http://aws.amazon.com/rds/</a></p> <p>Seems pricey for what you want, but you never said <em>you</em> were the one who would be paying the bill.</p> http://stackoverflow.com/questions/713232/problem-with-png-image-on-top-of-an-image-in-css/714110#714110 0 Answer by David Kolar for Problem with PNG image on top of an image in CSS? David Kolar 2009-04-03T14:18:00Z 2009-09-25T01:16:24Z <p>Make sure that you have the right path to the background image. If the style is in the <code>&lt;head&gt;</code> of the HTML page, then the path will be relative to the HTML page. If the style is within an external stylesheet, then the path will be relative to the file location of the stylesheet.</p> <p>You also might want to get it working without the Internet Explorer 6 PNG fixes first, and then add the fixes back in after you know the rest of the code is correct.</p> http://stackoverflow.com/questions/1452404/any-time-you-should-use-relative-links-for-internal-pages/1452490#1452490 0 Answer by David Kolar for Any time you should use relative links for internal pages? David Kolar 2009-09-21T01:15:49Z 2009-09-21T01:15:49Z <p>If you work in something like a Development-Preview-Production environment, you will find testing much easier if you use relative links. Otherwise, clicking on a link on the development server will take you to the production server.</p> http://stackoverflow.com/questions/1294267/how-to-position-the-split-line-caused-by-background-repeat/1294508#1294508 2 Answer by David Kolar for How to position the split line caused by background repeat. David Kolar 2009-08-18T15:11:01Z 2009-08-18T15:11:01Z <p>A straightforward way to do this without any CSS trickery or extra markup is to modify the image. Center the background image with:</p> <pre><code>background-position: top center; </code></pre> <p>...and then offset the actual image file in an editor. In Photoshop use Filter >> Other >> Offset and use a horizontal value that is half of the image's width. Likewise, in the Gimp use <a href="http://docs.gimp.org/en/gimp-layer-offset.html" rel="nofollow">Layer >> Transform >> Offset</a>.</p> <p>That's not the clean CSS solution you were looking for, but it's a nice pragmatic fix.</p> http://stackoverflow.com/questions/1278602/relative-positioned-divs-height-added-up-in-ie6-before-the-negative-top/1278656#1278656 1 Answer by David Kolar for Relative positioned divs height added up in IE6 before the negative top David Kolar 2009-08-14T15:51:16Z 2009-08-14T16:05:25Z <p>It's not the fact that the heights are added up beforehand that's messing you up---all browsers do this. It's the fact that IE 6 has a different idea of what to do when the <code>height</code> of <code>#B</code>'s content exceeds <code>100px</code>. Since you know the height you want for <code>#B</code>, you can add <code>overflow: hidden</code> to the existing style.</p> <pre><code>&lt;div id="B" style="height: 100px; overflow: hidden;"&gt; </code></pre> http://stackoverflow.com/questions/392594/concurrent-user-sessions-why-dont-we-see-more-of-it/988540#988540 0 Answer by David Kolar for Concurrent User Sessions - Why Don't We See More Of It? David Kolar 2009-06-12T19:20:16Z 2009-06-12T19:20:16Z <p>Since you first wrote the question, IE 8 has been officially released and it has a built-in feature that does what you want. From the "File" menu, click on "New Session." This will open a new window that will not share session cookies with the original window, allowing you to be logged into the same site under different logins simultaneously.</p> <p><a href="http://blogs.msdn.com/ie/archive/2009/05/06/session-cookies-sessionstorage-and-ie8.aspx" rel="nofollow">http://blogs.msdn.com/ie/archive/2009/05/06/session-cookies-sessionstorage-and-ie8.aspx</a></p> http://stackoverflow.com/questions/755795/are-iframes-html-obsolete/756606#756606 7 Answer by David Kolar for Are IFrames (HTML) obsolete? David Kolar 2009-04-16T15:11:24Z 2009-04-16T15:11:24Z <p>In my <strong>opinion</strong> the W3C jumped the gun in dumping iframes from the Strict HTML and XHTML doctypes. In theory you would use the <code>&lt;object&gt;</code> element to add foreign objects to your document, but browser differences and limitations have made this a nonstarter for many developers. With the much-more-pragmatic HTML 5 (which is still a draft), iframes are back and even have two new attributes: <code>seamless</code>, and the intriguing <code>sandbox</code>.</p> http://stackoverflow.com/questions/755944/possible-to-add-line-breaks-in-a-textarea-field-while-keeping-it-xhtml-1-0-valid/756239#756239 1 Answer by David Kolar for Possible to add line breaks in a textarea field while keeping it XHTML 1.0 valid? David Kolar 2009-04-16T13:59:19Z 2009-04-16T13:59:19Z <p>From the <a href="http://www.w3.org/TR/xhtml1/dtds.html#dtdentry%5Fxhtml1-strict.dtd%5Ftextarea" rel="nofollow">DTD</a>:</p> <blockquote> <p><code>&lt;!ELEMENT TEXTAREA - - (#PCDATA) -- multi-line text field --&gt;</code></p> </blockquote> <p>In the XHTML code of your page, a <code>&lt;textarea&gt;</code> can only contain text (<code>#PCDATA</code>), and you cannot nest any XHTML elements within the <code>&lt;textarea&gt;</code>.</p> <p>Your questions seems to show two different things. The image shows "<code>&lt;br /&gt;</code>" written into a <code>&lt;textarea&gt;</code>, while the message from the W3C Validator is referring to a <code>&lt;br /&gt;</code> element written into the XHTML of your page within the <code>&lt;textarea&gt;</code> element. </p> <p>In the first case, having "<code>Test&lt;br /&gt;line break</code>" appear to the user in the text area is done by using the appropriate entities, just as <a href="http://stackoverflow.com/questions/755944/possible-to-add-line-breaks-in-a-textarea-field-while-keeping-it-xhtml-1-0-valid/755996#755996">altCognito</a> wrote:</p> <pre><code>&lt;textarea&gt;Test&amp;lt;br /&amp;gt;line break&lt;/textarea&gt; </code></pre> <p>Anything that's being entered by the user that is then redisplayed within a <code>&lt;textarea&gt;</code> on a new page should be encoded (i.e., use entities for <code>&amp;</code>, <code>"</code>, <code>'</code>, <code>&lt;</code>, and <code>&gt;</code>).</p> <p>If want to display a user's entry:</p> <blockquote> <p>Test<code>&lt;br /&gt;</code>line break</p> </blockquote> <p>...as...</p> <blockquote> <p>Test<br /> line break</p> </blockquote> <p>...within another text area, then you will need to parse what has been entered into the original <code>&lt;textarea&gt;</code> and replace the user-entered <code>&lt;br /&gt;</code>s with normal line breaks. <a href="http://stackoverflow.com/questions/755944/possible-to-add-line-breaks-in-a-textarea-field-while-keeping-it-xhtml-1-0-valid/755992#755992">See Lucero's answer</a>.</p> http://stackoverflow.com/questions/751360/how-can-i-get-list-items-to-stay-together-using-css/751628#751628 2 Answer by David Kolar for How can i get List items to stay together using CSS? David Kolar 2009-04-15T13:11:40Z 2009-04-15T13:11:40Z <p>You could set the <code>&lt;ul&gt;</code> to </p> <pre><code>display: inline-block; </code></pre> <p>You might also want to <code>clear: left;</code> your images, since it's possible that they could start stacking up next to each other depending on the other content.</p> http://stackoverflow.com/questions/738831/how-to-display-browser-specific-html/738845#738845 2 Answer by David Kolar for How to display browser specific HTML? David Kolar 2009-04-10T20:58:39Z 2009-04-13T14:59:02Z <p>This is the Microsoft-approved way:</p> <pre><code>&lt;!--[if IE]&gt; &lt;a href="ie-only.html"&gt;click here!&lt;/a&gt; &lt;![endif]--&gt; &lt;![if !IE]&gt; &lt;a href="all-other-browsers.html"&gt;click here!&lt;/a&gt; &lt;![endif]&gt; </code></pre> <p>More information available at <a href="http://msdn.microsoft.com/en-us/library/ms537512%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx</a>.</p> <h2>Edit</h2> <p>This code is implicitly guaranteed to work in all current and future versions of IE starting with IE 5. For non-IE browsers, the code works by relying on those browsers ignoring the "nonsensical" <code>&lt;![if !IE]&gt;</code> tag, which they all do, and I've never seen it fail. For a version that uses nothing but good ol' HTML comments, see <a href="http://stackoverflow.com/questions/738831/how-to-display-browser-specific-html/739207#739207">bobince's answer</a>, which I actually prefer to the Microsoft-provided solution.</p> http://stackoverflow.com/questions/727285/is-really-impossible-to-write-code-in-an-mvc-master-page/727479#727479 0 Answer by David Kolar for Is really impossible to write code in an mvc master page? David Kolar 2009-04-07T20:34:42Z 2009-04-08T12:31:55Z <p>Try changing...</p> <pre><code>&lt;%= Html.ScriptInclude("~/Scripts/jquery.1.2.6.js")%&gt; </code></pre> <p>...to...</p> <pre><code>&lt;%# Html.ScriptInclude("~/Scripts/jquery.1.2.6.js")%&gt; </code></pre> <p>(Changing <strong>=</strong> to <strong>#</strong>)</p> http://stackoverflow.com/questions/726491/how-do-i-stop-search-engines-indexing-a-maintenance-page/726553#726553 9 Answer by David Kolar for How do I stop search engines indexing a maintenance page David Kolar 2009-04-07T16:26:28Z 2009-04-07T16:46:17Z <p>You should send a <strong><code>503 Service Unavailable</code></strong> HTTP status code, and not a <strong><code>404</code></strong>. Use this in conjunction with a <strong><code>Retry-After</code></strong> header to tell the robots when to come back.</p> http://stackoverflow.com/questions/714809/why-is-my-div-smaller-than-its-contents/715019#715019 1 Answer by David Kolar for Why is my DIV smaller than its contents? David Kolar 2009-04-03T18:02:32Z 2009-04-03T18:02:32Z <p>The absolute positioning is the reason the images are over the text (since nothing is giving the <code>#slideshow &lt;div&gt;</code> any height), but your system needs the images to be absolutely positioned in order to stack them on top of each other for the slideshow effect. Since you are using jQuery anyway, you can programmatically expand the container <code>&lt;div&gt;</code> to the height of the largest image.</p> <pre><code>var maxHeight = 0; $("#slideshow img").each(function(){ if (maxHeight &lt; $(this).height()) {maxHeight = $(this).height()} }); $("#slideshow").height(maxHeight); </code></pre> <p>I'm sure someone can point out a more elegant way to write the maxHeight part of the script!</p> http://stackoverflow.com/questions/697377/when-highlighting-html-on-a-page-it-colors-the-words-blue-but-doesnt-give-it-b/697404#697404 0 Answer by David Kolar for When highlighting html on a page, it colors the words blue, but doesn't give it blue background? David Kolar 2009-03-30T14:16:50Z 2009-03-30T14:21:51Z <p>That is exactly the behavior of selecting an image. </p> <p>CSS cannot directly influence this; it's a function of the browser.</p> <p><strong>EDIT:</strong> You've added that the background is set to an image, but this would not influence the highlighting at all. Do you have a sample URL?</p> http://stackoverflow.com/questions/696071/sifr-3-ie6-extra-spacing/697363#697363 0 Answer by David Kolar for sIFR 3: IE6 Extra Spacing David Kolar 2009-03-30T14:07:05Z 2009-03-30T14:07:05Z <p>You are trying to set the <code>line-height</code> in your <code>sifr-config.js</code>, but I don't think that will have any effect. Try setting the <code>leading</code> instead. It takes a value in pixels, but it doesn't take a unit. </p> <p>For example: </p> <pre><code>css: [ '.sIFR-root {leading: -2;}' ] </code></pre> http://stackoverflow.com/questions/690189/css-on-email/690457#690457 1 Answer by David Kolar for CSS on Email David Kolar 2009-03-27T16:27:41Z 2009-03-27T16:27:41Z <p>In addition to the inline css that everyone is recommending, keep in mind that email is often displayed online within another web page, such as through Yahoo! Mail, Hotmail, or Gmail. You can imagine the chaos that would ensue if <code>body</code> style declarations or random class names were allowed. You should plan for the possibility that anything that is not defined inline will be discarded, although some systems might attempt to preserve these rules with unpredictable success.</p> http://stackoverflow.com/questions/677655/stop-text-wrapping-in-lists/678006#678006 1 Answer by David Kolar for Stop text wrapping in lists David Kolar 2009-03-24T15:44:56Z 2009-03-24T15:44:56Z <p>Using <code>list-style-position:outside;</code> would be more doable if you were using an unordered list, which would always take the same amount of space for the marker. Since you are using an ordered list, I would stick with <code>list-style-position:inside;</code>. The problem, as you've discovered, is that IE and Firefox make the same amount of space for the marker irregardless of the number of digits in the marker or the size of the font. So you need to take matters into your own hands by creating the space yourself. The trick here is to know that, by default, IE and Firefox use different properties to create the space. IE uses <code>margin</code> on the <code>&lt;ol&gt;</code> (30 points) while Firefox uses <code>padding</code> (40 pixels), so you'll have to reset both of these values to achieve cross-browser happiness.</p> <p>Try this:</p> <pre><code>ol { margin-left: 0; padding-left: 3em; list-style-position: outside; } </code></pre> http://stackoverflow.com/questions/493837/html-elements-positioned-as-relative-then-moved-15px-still-take-up-same-physica/496648#496648 1 Answer by David Kolar for Html elements positioned as relative, then moved -15px still take up same physical space David Kolar 2009-01-30T18:37:45Z 2009-03-09T19:09:58Z <p>Instead of nudging the <code>&lt;li&gt;</code>s with 'position: relative', you could apply this to each tab (except for the first tab):</p> <pre><code>margin-left: -15px; </code></pre> <p><strong>EDIT:</strong> Example of the concept...</p> <pre><code>&lt;div style="text-align:center;"&gt; &lt;img src="http://www.google.com/intl/en_ALL/images/logo.gif" /&gt; &lt;img style="margin-left: -54px;" src="http://www.google.com/intl/en_ALL/images/logo.gif" /&gt; &lt;img style="margin-left: -54px;" src="http://www.google.com/intl/en_ALL/images/logo.gif" /&gt; &lt;img style="margin-left: -54px;" src="http://www.google.com/intl/en_ALL/images/logo.gif" /&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/568905/usage-of-the-html-table-summary-attribute/570059#570059 0 Answer by David Kolar for Usage of the HTML Table "summary" attribute David Kolar 2009-02-20T15:43:22Z 2009-02-20T15:43:22Z <p>I use the <code>summary</code> attribute to describe the <em>structure</em> of the table and the relationships of the rows and columns to each other. It augments the <code>&lt;tbody&gt;</code> and <code>&lt;th&gt;</code> elements and <code>scope</code>, <code>axis</code>, and <code>id</code> and <code>headers</code> attributes. It is possible to understand the structure of the table using those elements and attributes, but it's nice to have a plain-speak description right up front. </p> <p>Don't underestimate how much information is being conveyed visually by simply looking at the table. This is what I try to capture in the <code>summary</code> attribute.</p> http://stackoverflow.com/questions/560880/empty-html-tags/561772#561772 0 Answer by David Kolar for Empty HTML tags David Kolar 2009-02-18T16:13:58Z 2009-02-18T16:13:58Z <p>I've made validation part of my workflow because it helps me catch mistakes early. And while I don't consider empty elements to be a problem, it negates some of the value of using a validator if I have to mentally parse a list of warnings each time and decide whether a warning is important or not. So I try to keep my pages both error- and warning-free so that a quick glance at the <a href="https://addons.mozilla.org/en-US/firefox/addon/249" rel="nofollow">HTML Validator icon in the Firefox status bar</a> only changes when there is a real problem. To that end I keep empty elements "unempty" by inserting an empty comment.</p> <pre><code>&lt;span&gt;&lt;!-- --&gt;&lt;/span&gt; </code></pre> <p>(At least that works with the Tidy validator.) </p> <p>Now, that being said, I don't think this is at all necessary for many situations. It is perfectly reasonably to think that adding eight extra characters to your code just to avoid a validator warning is ridiculous. But it works for me.</p> http://stackoverflow.com/questions/551803/why-does-code-render-in-code-block/552101#552101 5 Answer by David Kolar for Why does code render in code block? David Kolar 2009-02-16T02:49:48Z 2009-02-16T02:49:48Z <p>I do not think [those tags] mean what you think they mean.</p> <p><code>&lt;pre&gt;</code> allows you to preserve white space and line feeds. <code>&lt;code&gt;</code> allows you to semantically indicate that code is being displayed on your page. Both have some default styles (such as applying a fixed-width font), but neither one does anything to escape <code>&lt;</code>, <code>&gt;</code>, <code>&amp;</code>, or <code>"</code>, so any unescaped HTML code you put in between those tags is going to be processed as HTML. You'll have to use <code>&amp;lt;</code>, <code>&amp;gt;</code>, <code>&amp;amp;</code>, and <code>&amp;quot;</code>. Here's a page where you can paste in text and have it escaped: <a href="http://accessify.com/tools-and-wizards/developer-tools/quick-escape/" rel="nofollow">http://accessify.com/tools-and-wizards/developer-tools/quick-escape/</a></p> http://stackoverflow.com/questions/535903/why-is-my-css-having-specificity-problems/537323#537323 0 Answer by David Kolar for Why is my CSS having specificity problems? David Kolar 2009-02-11T15:28:37Z 2009-02-11T15:28:37Z <p>You have correctly calculated the specificity for each rule, and the specificity of the second rule is a higher value than the specificity of the first rule. <strong>BUT</strong> specificity is only used to "sort rules with the same importance and origin..." (<a href="http://www.w3.org/TR/CSS21/cascade.html#cascading-order" rel="nofollow">http://www.w3.org/TR/CSS21/cascade.html#cascading-order</a>) In other words, specificity is a tie breaker, and in this case there is no tie to be broken.</p> http://stackoverflow.com/questions/536566/position-child-div-relative-to-grandparent-div/536990#536990 0 Answer by David Kolar for Position child div relative to grandparent div David Kolar 2009-02-11T14:22:16Z 2009-02-11T14:22:16Z <p>I think you can achieve what you want if you are able to add a "greatgrandparent" and position the child relative to that. </p> <p>Here's a modification to the code you posted:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;title&gt;&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;p&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. &lt;/p&gt; &lt;div style="position: relative;"&gt; &lt;div style="background-color: InfoBackground; border: solid 1px Silver; width: 400px; height: 200px; overflow-y:auto; overflow-x:hidden;"&gt; &lt;div style="background-color: InfoBackground; border: solid 1px Silver; width: 100%; font-size: 11px; padding-left: 210px;" &gt; &lt;div style="background-color: Window; border: solid 1px Silver; width: 200px; height: 199px; position: absolute; top: 1px; left: 1px;" &gt; &lt;p style="font-family: Segoe UI; font-size: 11px;"&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. &lt;/p&gt; &lt;/div&gt; &lt;p&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. &lt;/p&gt; &lt;p&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. &lt;/p&gt; &lt;p&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. &lt;/p&gt; &lt;p&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. &lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;p&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. &lt;/p&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/536787/intermixing-html-form-and-table/536886#536886 1 Answer by David Kolar for Intermixing HTML form and table David Kolar 2009-02-11T13:59:42Z 2009-02-11T13:59:42Z <p>1) When you create a page using "legal HTML," you can have an expectation that what works in today's browsers will work in tomorrow's browsers, or in some other user agents that you might not have checked the site in. But in the example you've given, the degree to which different browsers agree on how to "fix" the HTML for display is much less certain. It adds a level of predictability to the how the page will display when "valid HTML" is used. Plus, who knows how a user agent such as a screenreader would describe the code in question.</p> <p>2) Is using a regular anchor tag an option? </p> <pre><code>&lt;td&gt;&lt;input type="submit" value="OK"/&gt;&lt;/td&gt; &lt;td&gt; or &lt;a href="index.html"&gt;Cancel&lt;/a&gt;&lt;/td&gt; </code></pre> <p>Or you could use CSS to move a second form and its submit button up into the first form, but the specifics of this might be tricky. </p> http://stackoverflow.com/questions/529570/dead-center-for-javascript-output/529589#529589 0 Answer by David Kolar for Dead Center for JavaScript Output David Kolar 2009-02-09T19:43:49Z 2009-02-09T19:43:49Z <p>How about using <code>text-align: center</code>?:</p> <pre><code>#content { font-family: Helvetica, Geneva, Arial, sans-serif; font-color: black; background-color: white; text-align: center; } </code></pre> http://stackoverflow.com/questions/529079/positioning-columns-with-absolute-positioning-instead-of-floats/529103#529103 3 Answer by David Kolar for Positioning Columns With Absolute Positioning Instead of Floats David Kolar 2009-02-09T17:36:36Z 2009-02-09T17:36:36Z <p>A big problem with absolutely-positioned containers is placing content on the page below them when you don't know their heights ahead of time. In your example you have defined the heights of your absolutely-positioned elements, so this shouldn't be a problem for you. If it works for you, use it.</p> http://stackoverflow.com/questions/512695/how-do-i-prevent-line-breaks-between-a-radio-button-and-its-label-while-still-al/512834#512834 0 Answer by David Kolar for How do I prevent line breaks between a radio button and its label, while still allowing line breaks within the label itself? David Kolar 2009-02-04T19:11:56Z 2009-02-04T19:11:56Z <p>If you don't mind the less-neat markup, you can get what you want by simply eliminating the white space between the <code>&lt;input&gt;</code> and <code>&lt;label&gt;</code> text.</p> <pre><code>&lt;div class="chopped box"&gt; &lt;label&gt;&lt;input type="radio"/&gt;This is a really long string with no spaces&lt;/label&gt; &lt;/div&gt; &lt;div class="chopped box"&gt; &lt;label&gt;&lt;input type="radio"/&gt;This_is_a_really_long_string_with_no_spaces&lt;/label&gt; &lt;/div&gt; </code></pre> <p>(<code>&lt;label&gt;</code>s placed around <code>&lt;input&gt;</code>s per JacobM's suggestion.)</p> <p>If you want a bit of room between the <code>&lt;input&gt;</code> and the first character of the label, use a non-breaking space (<code>&amp;nbsp;</code>) entity.</p> http://stackoverflow.com/questions/507606/css-ul-menu-in-ie-6/507647#507647 1 Answer by David Kolar for CSS UL Menu in IE 6 David Kolar 2009-02-03T15:49:00Z 2009-02-03T15:49:00Z <p>I don't have a solution to the main issue, but you could change your code formatting to look nicer and still work in IE 6.</p> <pre><code>&lt;div class="nMenu"&gt; &lt;ul&gt; &lt;li&gt;&lt;a href=""&gt;One&lt;/a&gt;&lt;/li &gt;&lt;li&gt;&lt;a href=""&gt;Two&lt;/a&gt;&lt;/li &gt;&lt;li&gt;&lt;a href=""&gt;Three&lt;/a&gt;&lt;/li &gt;&lt;li&gt;&lt;a href=""&gt;Four&lt;/a&gt;&lt;/li &gt;&lt;li&gt;&lt;a href=""&gt;Five&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/463785/place-radio-button-label-above-using-css/470177#470177 1 Answer by David Kolar for Place Radio Button Label Above Using CSS David Kolar 2009-01-22T17:50:41Z 2009-01-22T17:50:41Z <p>I think I know what you are looking for, but correct me if I'm missing the mark. I'm assuming you will want the radio buttons centered under their labels. This is a lot easier if you are okay with adding <code>&lt;br&gt;</code>s to your markup.</p> <p><strong>CSS</strong></p> <pre><code>&lt;style type="text/css"&gt; label { float: left; padding: 0 1em; text-align: center; } &lt;/style&gt; </code></pre> <p><strong>HTML</strong></p> <pre><code>&lt;label for="myChoice1"&gt;Choice 1&lt;br&gt; &lt;input type="radio" id="myChoice1" name="myChoice" value="1"&gt; &lt;/label&gt; &lt;label for="myChoice2"&gt;Choice ABC&lt;br&gt; &lt;input type="radio" id="myChoice2" name="myChoice" value="ABC"&gt; &lt;/label&gt; &lt;label for="myChoice3"&gt;Choice qwerty&lt;br&gt; &lt;input type="radio" id="myChoice3" name="myChoice" value="qwerty"&gt; &lt;/label&gt; &lt;label for="myChoice4"&gt;Choice--final&lt;br&gt; &lt;input type="radio" id="myChoice4" name="myChoice" value="final"&gt; &lt;/label&gt; </code></pre> <p>...and then use your own clearing method to move to the next line.</p> <p>(The use of the <code>for</code> attribute in the <code>&lt;label&gt;</code>s is a little redundant here, but it won't hurt anything.)</p> http://stackoverflow.com/questions/1469899/whats-the-worst-security-hole-youve-ever-seen/1505669#1505669 Comment by David Kolar on What's the worst security hole you've ever seen? David Kolar 2009-12-08T16:06:37Z 2009-12-08T16:06:37Z I see this all the time. Ugh! It's an underappreciated problem. http://stackoverflow.com/questions/1798514/how-to-apply-this-css-class-to-given-link-button Comment by David Kolar on how to apply this css class to given link button? David Kolar 2009-11-25T17:43:45Z 2009-11-25T17:43:45Z It's confusing to conflate the HTML element &quot;&lt;a&gt;&quot;, the css class &quot;a&quot;, and the id &quot;A&quot; all within the same element. http://stackoverflow.com/questions/1646424/html-and-css-only-html-tags-reuse-across-different-pages/1646478#1646478 Comment by David Kolar on html and css only: html tags reuse across different pages. David Kolar 2009-10-29T20:56:19Z 2009-10-29T20:56:19Z Or Dreamweaver and its templating system, if the OP is willing to trade money for ease of use. http://stackoverflow.com/questions/1543937/have-you-used-any-databases-only-hosting-service Comment by David Kolar on Have you used any databases only hosting service? David Kolar 2009-10-09T14:22:23Z 2009-10-09T14:22:23Z I imagine that these are few and far between. Most people who want the database hosted will also want the site itself hosted. Using separate hosts for these makes your site dependent on <i>two</i> hosts being up and running instead of one, so it makes sense to use the same host for both just to cut out a point of failure. http://stackoverflow.com/questions/1468168/ie7-not-caching-css-image-over-ssl Comment by David Kolar on IE7 not Caching CSS Image over SSL David Kolar 2009-09-23T20:33:13Z 2009-09-23T20:33:13Z Are you certain that this only happens over SSL and does not occur over non-SSL pages? http://stackoverflow.com/questions/1266601/why-are-certain-files-not-published-in-the-appdata-folder/1273383#1273383 Comment by David Kolar on Why are certain files not published in the App_Data folder? David Kolar 2009-09-14T17:23:34Z 2009-09-14T17:23:34Z What causes some files to be marked &quot;None&quot; instead of &quot;Content&quot; to begin with? http://stackoverflow.com/questions/1327325/updating-mysql-with-textarea-content-without-reloading/1327982#1327982 Comment by David Kolar on Updating MySQL with textarea content without reloading David Kolar 2009-08-26T17:19:53Z 2009-08-26T17:19:53Z In general, this is an intriguing no-JavaScript fallback strategy even if you do use AJAX. http://stackoverflow.com/questions/1336036/matching-heights-of-inline-elements Comment by David Kolar on Matching heights of inline elements David Kolar 2009-08-26T16:49:41Z 2009-08-26T16:49:41Z I still can't tell if you are asking about heights or widths. http://stackoverflow.com/questions/1336036/matching-heights-of-inline-elements/1336053#1336053 Comment by David Kolar on Matching heights of inline elements David Kolar 2009-08-26T16:48:13Z 2009-08-26T16:48:13Z Assuming the right and left divs are what cause the container to expand, then 100% of what? http://stackoverflow.com/questions/794533/team-build-temp-global-asax1-error-aspparse-could-not-load-type-mvc Comment by David Kolar on Team Build - /temp/global.asax(1): error ASPPARSE: Could not load type 'Mvc' David Kolar 2009-08-25T20:21:46Z 2009-08-25T20:21:46Z I had the same problem and this answer fixed it: <a href="http://stackoverflow.com/questions/755645/asp-net-mvc-1-0-afterbuilding-views-fails-on-tfs-build/1098441#1098441" rel="nofollow" title="asp net mvc 1 0 afterbuilding views fails on tfs build">stackoverflow.com/questions/755645/&hellip;</a> http://stackoverflow.com/questions/30310/asp-net-mvc-how-do-i-enable-dashes-in-my-urls/540583#540583 Comment by David Kolar on Asp.Net MVC: How do I enable dashes in my urls? David Kolar 2009-08-20T14:49:09Z 2009-08-20T14:49:09Z @Eduardo I think the ActionName attribute was added for Preview 5, which came out just after Phil's post. http://stackoverflow.com/questions/1300366/meaning-of-the-lulz-in-comments Comment by David Kolar on meaning of "the lulz" in comments? David Kolar 2009-08-19T14:33:33Z 2009-08-19T14:33:33Z The New York Times had an article on &quot;the lulz&quot; <a href="http://www.nytimes.com/2008/08/03/magazine/03trolls-t.html" rel="nofollow">nytimes.com/2008/08/&hellip;</a> which was mocked on episode 154 of This Week In Tech <a href="http://twit.tv/154" rel="nofollow">twit.tv/154</a> http://stackoverflow.com/questions/1058088/jquery-selector-question/1058104#1058104 Comment by David Kolar on JQuery Selector Question David Kolar 2009-06-29T13:10:22Z 2009-06-29T13:10:22Z That's why the dollar sign is being used in the in [id$='ddlTags']. With that modifier, &quot;ddlTags&quot; only need to appear at the end of the id, so it should survive ASP.NET's mangling. http://stackoverflow.com/questions/751624/putting-2-divs-side-by-side-internet-explorer-6-7-float-and-padding-bug-fix Comment by David Kolar on Putting 2 divs side by side / Internet Explorer 6/7 float and padding (?) bug fix David Kolar 2009-04-15T13:22:36Z 2009-04-15T13:22:36Z Knowing the actual HTML content of &lt;div id=&quot;right&quot;&gt; might be useful. The screenshot makes it like a difference in padding on the form elements between FF and IE. http://stackoverflow.com/questions/751360/how-can-i-get-list-items-to-stay-together-using-css/751366#751366 Comment by David Kolar on How can i get List items to stay together using CSS? David Kolar 2009-04-15T13:14:41Z 2009-04-15T13:14:41Z Would this cause problems for content that followed the &lt;ul&gt;? You'd need that content to &quot;clear&quot; the &lt;ul&gt;, but not the &lt;img&gt;s.