active questions tagged html+or+mac - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:44:50Z http://stackoverflow.com/feeds/tag/html+or+mac http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813984/make-a-textarea-fill-up-the-rest-of-the-page-vertically 0 Make a TextArea fill up the rest of the page vertically? Evan Fosmark 2009-11-28T22:34:59Z 2009-11-28T22:42:04Z <p>Is there an easy way to make the height of a fill up to the height of the page?</p> http://stackoverflow.com/questions/1813727/safari-javascript-issue 1 Safari Javascript Issue Brian Stinar 2009-11-28T20:37:43Z 2009-11-28T22:18:12Z <p>Hello,</p> <p>I am currently working on a Javascript program for my company (Leader Technologies) that is used to register products for Logitech. The URL for that is : <a href="http://wwwtest.onlineregister.com/logitechreg/" rel="nofollow">http://wwwtest.onlineregister.com/logitechreg/</a></p> <p>My program looks totally fine on everything single web browser (including IE 6) that I have tried except Safari 4. On Safari 4, after a location, language and product category have been selected, when the actual product menu is clicked (id=WHPR), the div responsible for displaying the product is shown, but the drop-down selections are still visible. On all other browsers, the drop-down and the possible selections inside it in hidden (which is the intended behavior.)</p> <p>Directly, my question is can I hid this drop-down successfully in Safari 4 WITHOUT completely emptying out the drop down and then repopulating it with only the selected value? I would rather not do this if at all possible, but if it's the only way to accomplish my goal then I can change the site additionally. </p> <p>I believe the problem is where I set the listeners on the <code>&lt;select&gt; </code>: </p> <p><code>&lt;select id="WHPR" class="ui-formulate-ignore" style="width: 280px; visibility: visible;" onchange="whprChanged(this);" onfocus="displaySelector(form, document.getElementById('WHPR')); document.getElementById('imageHolder').focus(); this.blur();" name="WHPR"&gt;</code></p> <p>Thank you all very much for taking the time to help me. I really appreciate all the help available on this site. </p> <p>-Brian J. Stinar-</p> http://stackoverflow.com/questions/1812528/aligning-div-without-margin-or-float 0 Aligning DIV without margin or float Pekka Gaiser 2009-11-28T13:36:03Z 2009-11-28T22:11:35Z <p>I a template, I have five DIV elements underneath each other on a HTML page. (Logo, top menu, sub menu, content, footer).</p> <p>I want the user to be able to set the alignment for each DIV in a CMS: left, center, right. Those settings I used to translate to</p> <pre><code>margin-left: auto; margin-right: 0px; // right margin-right: auto; margin-left: 0px; //left margin-left: auto; margin-right: auto; // center </code></pre> <p>for each DIV. Now however, I want the user to be able to specify a real <strong>margin for each side</strong> as well. That, of course, makes the <code>margin</code> attribute <strong>unusable for positioning</strong>.</p> <p>I do <strong>not</strong> want to use <strong>float</strong> for the positioning as this will bring additional layout troubles. I would have to surround the DIVs with <code>overflow: auto</code> wrappers and so on. </p> <p>My current idea is to have <strong>two nested DIVs</strong>. The outer one takes care of the positioning (margin:auto), while the inner one sets the user-specified margins.</p> <p>I fear however that this will bring me additional woes when variable widths come into play, or inner padding. </p> <p><strong>Is there a simpler way than that to align a block element left, right, or center?</strong></p> <p>IE7 used to listen to <code>&lt;div align=center&gt;</code> and center block elements surrounded by it. Something like that (but valid and cross-browser) would be exactly what I'm looking for.</p> http://stackoverflow.com/questions/385837/simple-web-page-layout-and-templating-in-php 8 Simple web page layout and templating in PHP BRH 2008-12-22T09:18:28Z 2009-11-28T21:58:40Z <p>In the past I've written sites in ASP.NET just to get nice reusable templating via master pages (layouts) and user controls (partials). I'm talking about sites that have no more complicated code in them than simple variable substitution in templates - I'm just using it to keep my HTML organized. It's great to be able to define the basic layout of your page in one file, and then just fill in the holes for each individual page, re-using some common bits as user controls.</p> <p>However, I'd rather not continue using Windows hosting, so I'd like to write static pages in PHP, which runs everywhere. In the past I've written myself a poor-man's user control for PHP that just unpacks an array and includes a template, but that's clunky and still requires me to put PHP includes all over my pages. I feel like Smarty or one of the other big templating languages for PHP is overkill for just organizing some "static" pages.</p> <p>I've considered just doing the pages in Ruby on Rails because I really like HAML/SASS and the layout/partial model, but having a whole rails app for static content seems silly. But I haven't found anything that seems just right in PHP. Can any PHP gurus recommend anything? I want something more sophisticated than "include" but I don't really need much. That said, something that could give me layouts/partials AND HAML/SASS would be heaven. I've looked at <a href="http://phammable.org/" rel="nofollow">phammable</a> but it doesn't look like it solves the layout/partial problem.</p> <p>Again, I'm not looking for something as complex as Smarty, and I don't want a full CMS. I just want something that will let me properly modularize the HTML of my site. We're talking one step beyond static HTML here.</p> http://stackoverflow.com/questions/1765784/center-an-background-image 0 Center an background image Kaartz 2009-11-19T19:11:13Z 2009-11-28T21:56:46Z <p><a href="http://img684.imageshack.us/img684/5449/picture1w.png" rel="nofollow">http://img684.imageshack.us/img684/5449/picture1w.png</a></p> <p>Please have a look at the above screen shot, I would want to center an image with black background, but i'm getting some white space at the bottom. Please could any one help me to fix this.</p> <p>CSS</p> <pre><code>.bgimg { background: url('../images/GBS-Chronicle-Background-1.png') black no-repeat center; } div#cont { height: 672px; } </code></pre> <p>HTML </p> <pre><code>&lt;body class="bgimg"&gt; &lt;div id="doc2"&gt; &lt;div id="hd"&gt;&lt;/div&gt; &lt;div id="bd"&gt; &lt;div id="cont"&gt; &lt;div class="middle"&gt; &lt;p&gt; hi hello &lt;/p&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;div id="fd"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/317854/easiest-way-or-best-tools-to-convert-word-text-to-clean-xhtml 2 Easiest way or Best tools to convert word text to clean (X)HTML Salt Packets 2008-11-25T16:03:42Z 2009-11-28T21:19:39Z <p>This might have been asked in another way. I am not doing it on the fly however. Once in a while we get pieces of content in word files that have em dashes, bold, italic text and block quotes. Is there a good tool to convert this into a clean html code. </p> <p>Otherwise what other approaches people take. </p> http://stackoverflow.com/questions/67964/what-is-the-best-free-way-to-clean-up-word-html 4 What is the best free way to clean up Word HTML? codeflunky 2008-09-15T23:36:21Z 2009-11-28T21:11:38Z <p>Please provide the single best option you are aware of.</p> http://stackoverflow.com/questions/1813701/graphical-interface-for-graphiz-for-mac-os 0 Graphical interface for Graphiz for Mac OS? Chad Johnson 2009-11-28T20:26:45Z 2009-11-28T20:26:45Z <p>I installed the Graphviz GUI from pizelmap.com, but it appears to only be a viewer for .dot Graphviz files. I am looking for a graphical <em>editor</em>, where I can create diagrams by pointing and clicking--just like the iPhone app Instaviz.</p> <p>I would rather not code graphs by hand.</p> <p>Does anyone know of anything--preferably free?</p> http://stackoverflow.com/questions/690147/why-does-ie-make-password-boxes-smaller-than-text-boxes 5 Why does IE make password boxes smaller than text boxes? Patrick McElhaney 2009-03-27T15:11:38Z 2009-11-28T20:12:22Z <p>See the simple form below. It's just a text box on top of a password box. If you look at it in Internet Explorer 7 (and 8, and probably others) the text box is 10 pixels wider than the password box. </p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"&gt; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"&gt; &lt;title&gt;IE Text vs. Password test&lt;/title&gt; &lt;/head&gt; &lt;body&gt; &lt;form action="test"&gt; &lt;p&gt; &lt;input type="text"&gt;&lt;br&gt; &lt;input type="password"&gt; &lt;/p&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>Is there a way to "fix" that globally, either through CSS or by adding something to the HTML? </p> http://stackoverflow.com/questions/1548448/contenteditable-breaks-page-up-down-buttons-in-firefox 0 contentEditable breaks page up down buttons in firefox Drew 2009-10-10T16:48:36Z 2009-11-28T20:00:02Z <p>Does anyone know how to fix (or what causes) the page up/down bug in FF when contentEditable is present on a div?</p> <p><strong>See an example</strong> Navigate to <a href="http://perplexed.co.uk/993%5Fcontenteditable%5Fcross%5Fbrowser%5Fwysiwyg.htm" rel="nofollow">contentEditable article</a> with FireFox (3 or 3.5) and use the Page Up/down arrows on your keyboard. You should be unable to scroll to the bottom of the page, and it should appear to flicker and jump back up.</p> http://stackoverflow.com/questions/1813370/printing-to-ip-receipt-printer-from-ruby 0 Printing to IP receipt printer from ruby Richard Millan 2009-11-28T18:48:06Z 2009-11-28T19:40:04Z <p>Want to send text to a network receipt printer using ruby. I know the IP address of the printer. The printer is accessible through the network, but it is not directly connected to the computer.</p> <p>I'm using a Star TSP100LAN, but I'm sure it would be using the same protocol as other receipt printers.</p> http://stackoverflow.com/questions/1811905/why-does-emacs-in-an-xterm-on-a-mac-interpret-c-h-as-backward-delete-char 0 Why does emacs in an xterm on a Mac interpret c-h as backward-delete-char ? ro 2009-11-28T07:44:33Z 2009-11-28T19:32:33Z <p>C-h is correctly interpreted has 'help' in Carbon Emacs.app and using /usr/bin/emacs in Terminal.app. I'm sure I'm missing something simple here. Emacs describe-bindings shows c-h is rightly mapped to help. So it seems like xterm or X11 sees a c-h keypress and then sends a backspace to emacs. Can this behavior be changed?</p> http://stackoverflow.com/questions/1813076/whats-the-simplest-way-to-do-cross-browser-rounded-borders-in-html-css 0 What's the simplest way to do cross-browser rounded borders in HTML/CSS? John 2009-11-28T17:05:53Z 2009-11-28T19:32:02Z <p>I'm not after the 'best' way, that requires a lot of work doing large changes for different browsers, but the 'best easy' way... ideally the least horrible way that would work unchanged on IE7+, FF2+, Chrome. Tables are an option but probably a little <em>too</em> archaic. Is there a middle ground, which uses CSS without a lot of hassle?</p> <p>And, if you want your borders to be more advanced than simple lines, are images+tables the best/only way, or is there a neat CSS+images solution?</p> http://stackoverflow.com/questions/1811856/adding-non-escaped-ampersands-to-html-with-nokogirixmlbuilder 0 Adding non-escaped Ampersands to HTML with Nokogiri::XML::Builder viatropos 2009-11-28T07:18:01Z 2009-11-28T19:06:09Z <p>I would like to add things like bullet points "&#8226;" and such to html using the XML Builder in Nokogiri, but everything is being escaped. How do I prevent it from being escaped?</p> <p>I would like the result to be: </p> <p><pre><code> <code>&lt;span&gt;&amp;#8226;&lt;/span&gt; </code> </code></pre> rather than </p> <p><pre><code> <code>&lt;span&gt;&amp;amp;#8226;&lt;/span&gt; </code> </code></pre></p> <p>What am I missing? </p> <p>I'm just doing this: </p> <p><pre><code> <code>xml.span { xml.text "&amp;#8226;\ " }</code> </code></pre></p> <p>Thanks!</p> http://stackoverflow.com/questions/56107/what-is-the-best-way-to-parse-html-in-c 6 What is the best way to parse html in C#? Luke 2008-09-11T09:16:40Z 2009-11-28T18:55:25Z <p>I'm looking for a library/method to parse an html file with more html specific features than generic xml parsing libraries.</p> http://stackoverflow.com/questions/1813085/is-it-redundant-to-use-the-name-attribute-for-input-fields-in-modern-web-develo 1 Is it redundant to use the "name" attribute for input fields in modern web development? BitDrink 2009-11-28T17:09:08Z 2009-11-28T18:44:43Z <p>Hello,</p> <p>I've noticed a lot of websites with form(s) containing input fields whose "name" attribute is specified even if it isn't used for styling or scripting purpose!</p> <p>Moreover, according to <a href="http://www.w3.org/TR/html4/interact/forms.html#adef-name-FORM" rel="nofollow">the official document</a> about the form in HTML document ...</p> <blockquote> <p><strong>name = cdata [CI]</strong> This attribute names the element so that it may be referred to from style sheets or scripts. Note. This attribute has been included for backwards compatibility. Applications should use the id attribute to identify elements.</p> </blockquote> <p>So, my question is: should this attribute used only for styling and scripting purposes?</p> <p>Thanks in advance!</p> <p><hr></p> <p><strong>EDIT:</strong> In particular, could be avoided the use of this attribute with input fields of "text" type (when there aren't no styling or scripting purposes)? </p> <p><hr></p> <p><strong>EDIT 2:</strong> So, you have almost confirmed what I had thought about: the "name" attribute will be deprecated in further HTML specifications/standards!!!??? It is still "alive" only <code>for backwards compatibility</code> ... in some cases can be avoided but there are still some cases (such as the radio button) where it is necessary!</p> http://stackoverflow.com/questions/1813297/facebook-and-fbml 0 facebook and fbml chris 2009-11-28T18:28:34Z 2009-11-28T18:28:34Z <p>i am listing on the page into a select element the names of all friends of a user who uses my app.. the render is alright as below but then when it goes through fbml only one friend comes up?</p> <pre><code>&lt;form name="form1" id="form1"&gt; &lt;option value="" selected="true"&gt;Choose Friend&lt;/option&gt; &lt;option value="x"&gt;&lt;fb:name uid="x" linked="FALSE"&gt;&lt;/option&gt; &lt;option value="x"&gt;&lt;fb:name uid="x" linked="FALSE"&gt;&lt;/option&gt; &lt;option value="x"&gt;&lt;fb:name uid="x" linked="FALSE"&gt;&lt;/option&gt; &lt;option value="x"&gt;&lt;fb:name uid="x" linked="FALSE"&gt;&lt;/option&gt; &lt;option value="x"&gt;&lt;fb:name uid="x" linked="FALSE"&gt;&lt;/option&gt; &lt;option value="x"&gt;&lt;fb:name uid="x" linked="FALSE"&gt;&lt;/option&gt; (and so on....) &lt;/select&gt; &lt;/form&gt; </code></pre> <p>but then when it renders into the app all i get is one-</p> <pre><code>&lt;option value="" selected="true"&gt;Choose Friend&lt;/option&gt; &lt;option value="x"&gt;John Smith&lt;/option&gt;&lt;/select&gt; </code></pre> <p>(i have chanegd the values for privacy)</p> http://stackoverflow.com/questions/1719268/scraping-hidden-html-when-visible-false-using-hpricot-ruby-on-rails 0 Scraping hidden HTML (when visible = false) using Hpricot (Ruby on Rails) Erika 2009-11-12T01:23:59Z 2009-11-28T18:01:13Z <p>Hi, I've come across an issue which unfortunately I can't seem to surpass, I'm also just a newborn to Ruby on rails unfortunately hence the number of questions</p> <p>I am attempting to scrape a webpage such as the following:</p> <pre><code>http://www.yellowpages.com.mt/Malta/Grocers-Mini-Markets-Retail-In-Malta-Gozo.aspx </code></pre> <p>I would like to scrape The Addresses, Phones and URL of the next Page which in this case is</p> <pre><code>http://www.yellowpages.com.mt/Malta/Grocers-Mini-Markets-Retail-In-Malta-Gozo+Ismol.aspx </code></pre> <p>I've been trying just about anything i could think of but nothing seems to work due to them being set to invisible or so. </p> <p>The Address is within an <em>h3</em> tag but it does not appear to be scrap-able. I've been also looking into ScRUBYt from the following url <code>http://www.rubyrailways.com/ajax-scraping-with-scrubyt-linkedin-google-analytics-yahoo-suggestions/</code>, but i really cant seem to find heads or tails of how to apply them in this case. </p> <p>I would really appreciate any pointers as this is an obstacle which i really need to surpass in order to move forward on my assignment. Thanks in advance for any help. </p> http://stackoverflow.com/questions/1437095/parsing-xml-with-jquery-problem-with-output 0 parsing xml with jquery problem with output unknown (google) 2009-09-17T06:47:15Z 2009-11-28T18:00:02Z <p>Hey guys,</p> <p>i want to parse an xml file with jquery. This works so far, only the output confuses me:) probably you can help me.</p> <pre><code>$(function(){ $.get("images.xml",{},function(xml){ var output = "&lt;ul&gt;"; $(xml).each(function() { smallImage = $(this).find("small").text(); //bigImage = $(this).find("big").text(); output += "&lt;li&gt;" + smallImage + "&lt;/li&gt;"; output += "&lt;/ul&gt;"; }); $("#wrapper").append(output); }); }); </code></pre> <p>I want to have each image link in a separate line, until now all links are together in one. Thanks for your help.</p> http://stackoverflow.com/questions/1813208/how-to-wrap-textarea 0 how to wrap textarea neurosis psychosis 2009-11-28T17:51:06Z 2009-11-28T17:53:00Z <p>how to wrap the text in textarea so that word will not be overflown to rightside and written in new line.</p> http://stackoverflow.com/questions/1813098/php-array-to-list 0 PHP Array to List Ashley Ward 2009-11-28T17:12:56Z 2009-11-28T17:48:30Z <p>How do I go from this multidimensional array: </p> <pre><code>Array ( [Camden Town] =&gt; Array ( [0] =&gt; La Dominican [1] =&gt; A Lounge ) [Coastal] =&gt; Array ( [0] =&gt; Royal Hotel ) [Como] =&gt; Array ( [0] =&gt; Casa Producto [1] =&gt; Casa Wow ) [Florence] =&gt; Array ( [0] =&gt; Florenciana Hotel ) ) </code></pre> <p>to this</p> <pre><code>&lt;ul&gt; Camden Town La Dominican A Lounge Coastal Royal Hotel etc..... </code></pre> <p>above is in html...</p> <p>Thanks!</p> http://stackoverflow.com/questions/1813021/is-it-possible-to-create-a-div-element-with-jquery-onclick-of-a-link 0 Is it possible to create a div element with jquery onclick of a link sico87 2009-11-28T16:54:27Z 2009-11-28T17:23:36Z <p>Hi, </p> <p>I have a navigation list, the effect I am wanting is for when the user clicks on a link an accodian style div is built and displayed by jquery, then if the user clicks the same screen the is deleted from the screen, could someone suggest how this could be achieved I have been searching google with no luck.</p> <p>Thanks</p> http://stackoverflow.com/questions/1810828/css-sprite-based-rollover-blinks-in-ie6 1 CSS sprite based rollover blinks in IE6 DrGlass 2009-11-27T22:24:18Z 2009-11-28T17:22:48Z <p>I'm using the CSS based rollover "trick" that switches the background position of the element's background image on hover.</p> <p>The CSS</p> <pre><code>#welcome #step1 {background: transparent url(../img/mock/homepage_welcome_step1.png) no-repeat scroll left top;} #welcome #step1:hover {background: transparent url(../img/mock/homepage_welcome_step1.png) no-repeat scroll right top;} </code></pre> <p>The HTML</p> <pre><code>&lt;div id="welcome"&gt; &lt;a class="steps" id="step1" href="?page=signup"&gt;&lt;/a&gt; ... &lt;/div&gt; </code></pre> <p>Naturally IE6 messes this simple thing up. All my rollovers blink. You can see it here: <a href="https://stage.omnipacs.com/" rel="nofollow">https://stage.omnipacs.com/</a>? (forgive the SSL issue as this is a test server)</p> <p>Upon mouse over the image vanishes for a moment then moves to the over state. An interesting quirk, if I navigate away from the page then press the BACK button the problem seems to go away!</p> <p>I'm thinking it has to do with the PNG image files (though they don't have any transparency) Or perhaps something simple as doc type (XHTML transitional)</p> <p>Thanks for your insight.</p> <p>EDIT (<strong>SOLVED</strong>):</p> <p>Jitendra provided the link to solve the problem. I simply added this to the head:</p> <pre><code>&lt;!--[if IE 6]&gt; &lt;style type="text/css" &gt; html { filter: expression(document.execCommand("BackgroundImageCache", false, true)); } &lt;/style&gt; &lt;![endif]--&gt; </code></pre> http://stackoverflow.com/questions/1678926/is-there-a-way-to-compare-the-appearance-and-or-source-html-of-2-browser-tabs 2 Is there a way to compare the appearance and/or source HTML of 2 browser tabs? Rog 2009-11-05T07:33:01Z 2009-11-28T17:19:34Z <p>I'm working on a web based application, and in order to test my changes, I'd like to be able to compare the visual rendering (perhaps by way of overlaying) and the source HTML (<em>diff</em> style) of 2 browser tabs (development vs production). I'm happy to use any browser to do this.</p> <p>I've already got a couple of scripts that pull the HTML from 2 sites and compares them, but it's tedious outside of a browser and doesn't easily handle the situation where there are session based clickstreams to get to the pages that I'd like to compare. I've also copied and pasted the source into a comparison tool manually, but again this is quite tedious.</p> <p>Any tips?</p> http://stackoverflow.com/questions/52213/browser-refresh-behaviour 2 Browser refresh behaviour Marcus Downing 2008-09-09T15:45:19Z 2009-11-28T16:44:28Z <p>When a user hits Refresh on their browser, it reloads the page but keeps the contents of form fields. While I can see this being a useful default, it can be annoying on some dynamic pages, leading to a broken user experience.</p> <p>Is there a way, in HTTP headers or equivalents, to change this behaviour?</p> http://stackoverflow.com/questions/1812773/using-html-tags-in-javascript-strings-while-complying-with-w3c-rules 0 Using HTML tags in JavaScript strings while complying with W3C rules Pieter 2009-11-28T15:24:26Z 2009-11-28T15:55:16Z <p>Here's my code:</p> <pre><code>&lt;a href="#"&gt; &lt;img src="myimage.jpg" onmouseover="showDescription( 'Text', 'Text with HTML tags in them&lt;br /&gt;More text');" onmouseout="revertDescription();" alt="Image description"&gt; </code></pre> <p>The W3C Markup Validator doesn't like this. It doesn't want HTML tags inside my JavaScript code. Here's the error message it produces if I attempt this:</p> <blockquote> <p>character "&lt;" is the first character of a delimiter but occurred as data</p> </blockquote> <p>How can I fix this while making sure that my page doesn't mess up if I pass the HTML tag-containing string to <code>document.getElementById('myElement').innerHTML</code>?</p> http://stackoverflow.com/questions/1812611/wordpress-how-to-add-a-caption-right-aligned-to-the-edge-of-the-image 0 Wordpress: How to add a caption right-aligned to the edge of the image rutherford 2009-11-28T14:23:32Z 2009-11-28T15:50:03Z <p>So how do I align an image caption under an image tag to it's right hand edge?</p> <p>Tried using div but obviously that's not allowed in wp.</p> <p>What alternative css/tags do I need to use?</p> http://stackoverflow.com/questions/1811707/nameoption11-nameoption21-nameoption31-nameoption41-1-2-3-4-is-a-v 0 name="option11",name="option21",name="option31",name="option41",1,2,3,4.., is a variable. How to write the code? Steven 2009-11-28T05:42:21Z 2009-11-28T15:05:59Z <pre><code>$html=&lt;&lt;&lt;html &lt;div&gt;A:&lt;input type="text" maxlength="40" size="8" name=option$i."1" value='$option1'/&gt;(answer)&lt;/div&gt;&lt;br/&gt;&lt;br/&gt; html; echo $html; </code></pre> <p>$i is a variable. For example, when $i=5, the value of name should be "option51". </p> <p>So the HTML code should be </p> <pre><code> &lt;div&gt;A:&lt;input type="text" maxlength="40" size="8" name="option51" value='$option1'/&gt;(answer)&lt;/div&gt;&lt;br/&gt;&lt;br/&gt; </code></pre> <p>How to write the code?</p> http://stackoverflow.com/questions/1812686/pdf-what-is-the-best-tool-to-convert-from-pdf-to-html 0 [PDF] what is the best tool to convert from PDF to HTML william 2009-11-28T14:52:54Z 2009-11-28T15:02:54Z <p>Hello, I am looking for the best accurate tool to convert from pdf to clean w3 html file</p> <p>looking for your suggestions Thanks</p> http://stackoverflow.com/questions/1812628/is-there-any-site-i-can-type-in-a-html-color-and-see-the-actual-color 2 is there any site i can type in a HTML color and see the actual color oo 2009-11-28T14:29:39Z 2009-11-28T14:47:35Z <p>i would want to type in something like this: #a6e2a6 and see the actual color</p>