active questions tagged float - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T19:13:19Z http://stackoverflow.com/feeds/tag/float http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1909648/stacking-divs-in-top-of-each-other 0 Stacking DIVs in top of each other? Kaitsuli 2009-12-15T19:09:35Z 2009-12-15T19:11:23Z <p>Hi,</p> <p>Is it possible to stack up multiple DIVs like:</p> <pre><code>&lt;div&gt; &lt;div&gt;&lt;/div&gt; &lt;div&gt;&lt;/div&gt; &lt;div&gt;&lt;/div&gt; &lt;div&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>So that all those inner DIVs have the same X and Y position? By default they all go below each other increasing the Y position by the height of the last previous DIV.</p> <p>I have a feeling some sort of float or display or other trick could bite?</p> http://stackoverflow.com/questions/259290/disappearing-bullet-points 1 Disappearing bullet points chumbawumba 2008-11-03T17:03:07Z 2009-12-15T14:54:10Z <p><a href="http://biochrom.fivesite.co.uk/catalogue4.asp" rel="nofollow">http://biochrom.fivesite.co.uk/catalogue4.asp</a></p> <p>On the page above there is an image floated to the left. To the right of it is a list, titled "features". The list items have a background image, however, it isn't appearing. List 2 shows how the background image looks.</p> <p>Does anyone know how I can make the bullets visible?</p> http://stackoverflow.com/questions/861800/webkit-float-issue 1 webkit float issue Dels 2009-05-14T06:14:19Z 2009-12-15T10:10:06Z <p>I have some problem where i set 2 floated div elements, one of div contain <strong>select</strong> element, when the page loaded the divs didn't have the problem, but as soon i click on of the element(s) on select box, the div that positioned in right shift to bottom?</p> <p>Here some example code about what i'm talking:</p> <pre><code> #div1,#div2{float:left} #div1{width:200px;margin-right:10px} #div2{width:760px} </code></pre> <p>and the html</p> <pre><code>&lt;div id="wrapper"&gt; &lt;div id="div1"&gt;&lt;!--here the select goes--&gt;&lt;/div&gt; &lt;div id="div2"&gt;&lt;!--here the table goes--&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>And here the screenshot for what happening after and before:<br> <a href="http://img526.imageshack.us/img526/6834/screenshot.jpg" rel="nofollow">Screenshot</a></p> <p>No javascript involved at all</p> <p>I've tested with Opera (Presto), Firefox (Gecko), IE8 (Trident) and no problem, seem it only appears on Webkit based browser, since i've tested on Chrome 2, SR Iron &amp; QTWeb</p> <p>PS: try to ignore the ugly table header, soon i'll fix it (it's currently ok on Opera, Firefox, IE8 browser)</p> http://stackoverflow.com/questions/1887251/show-decimal-or-double-with-zeros 0 show decimal or double with zeros snarebold 2009-12-11T10:44:41Z 2009-12-11T13:57:49Z <p>hi</p> <p>i get price values from DB.</p> <p>now whenever the price is perhaps 5, I want to show 5.00</p> <p>if its 4.3 it should be 4.30.</p> <p>how to convert that?</p> <p>thanks</p> http://stackoverflow.com/questions/1881105/code-doesnt-work-without-show-jquery 0 Code doesn't work without .show() - jQuery Nimbuz 2009-12-10T13:50:14Z 2009-12-10T15:02:23Z <pre><code> this.randomtip = function(){ var length = $("#showcase ul li").length; var ran = Math.floor(Math.random()*length) + 1; $("#showcase ul li:nth-child(" + ran + ")").show(); }; randomtip(); </code></pre> <p>..the code above works well with <code>.show()</code> in the end, but if I change it to <code>.addClass('show')</code> it won't work. </p> <p>I'd like to give it a class instead to apply <code>float:left</code> property to all <code>li</code> items instead of the default <code>display:list-item</code>. How do I fix this?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1864565/firefox-floated-ul-extra-top-padding-or-margin-even-after-default-reset 0 Firefox floated <ul>... extra top padding or margin, even after default reset? lbholland 2009-12-08T04:23:13Z 2009-12-08T21:28:00Z <p>I've got a simple floated horizontal list that is looking good in IE and Opera, but Firefox has extra padding or margin at the top that I don't know how to fix.. It looked fine until I had to add a display:inline to an image link next to it because of another issue, so I think it's something to do with the display attribute.. any ideas? I've been trying to figure this out for the past eight hours.</p> <pre><code>#header { background: url(../Images/header_bkg.png) repeat-x; width: 800px; height: 125px; position: relative; } #header ul { list-style-type: none; margin: 0; padding: 0; float: right; } #header li { float: left; padding: 0 6px 0 0; margin: 0; } #header a, #header a:visited { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: .7em; color: #333333; text-decoration: none; padding: 2px; display: block; } #header a:hover { font-size: .7em; color: #FFFFFF; background: #DCAD33; text-decoration: none; display: block; } &lt;div id="header"&gt; &lt;img src="../Images/right_header_bar.png" style="float:right" /&gt; &lt;a href="../index.html" style="background:none; display: inline"&gt;&lt;img src="../Images/Scofield_logo.png" style="float:left; padding: 0 0 0 20px" /&gt;&lt;/a&gt; &lt;ul&gt; &lt;li&gt;&lt;a href="../index.html"&gt;HOME&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../Portfolio/portfolio.aspx"&gt;PORTFOLIO&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../Unique/ShipReady.aspx"&gt;RARITIES&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../custom.html"&gt;CUSTOM&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../trade.html"&gt;TRADE&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../Company.html"&gt;COMPANY&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../press.html"&gt;PRESS&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="http://scofieldhistoriclighting.blogspot.com/" target="_blank"&gt;BLOG&lt;/a&gt;&lt;/li&gt; &lt;li&gt;&lt;a href="../Contact.html"&gt;CONTACT&lt;/a&gt;&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; </code></pre> http://stackoverflow.com/questions/1857905/float-align-displayinline-problem 0 Float align display:inline problem Val 2009-12-07T05:02:47Z 2009-12-07T06:08:18Z <pre><code>&lt;div style="display:inline;"&gt; &lt;textarea rows="10" cols="50"&gt;&lt;/textarea&gt;&lt;br /&gt; &lt;div style="float:right;"&gt;remaining characters: 300&lt;/div&gt; </code></pre> <p></p> <p>It is not working in either firefox or IE. The text remaining characters is not within the "inline" bounds instead goes 100% out of the containing div.</p> <p>what is the best way of accomplish something like this where text is aligned right in parent div with textarea before that?</p> http://stackoverflow.com/questions/1853734/a-floating-point-array-in-c 1 A floating point array in C sfactor 2009-12-05T22:49:04Z 2009-12-06T11:14:39Z <p>i am developing a code where i have to load floating point values stored in each line at a time in a text file...i loaded each of these data into a array of floats using fscanf()...however i found that the floating points were stored in a different way, example 407.18 was stored as 407.179993, 414.35 as 414.350006...now i am stuck because it is absolutely important that the numbers be stored in the form they were in the file but here it seems to be different even though essentially its the same....how do i get the numbers to store in the original form?</p> http://stackoverflow.com/questions/686353/c-random-float 5 C++ random float hasen j 2009-03-26T15:49:14Z 2009-12-05T05:04:47Z <p>How do I generate random floats in C++?</p> <p>I thought I could take the integer rand and divide it by something, would that be adequate enough?</p> http://stackoverflow.com/questions/1850370/center-float-boxes-horizontally 0 Center float boxes horizontally fidoboy 2009-12-04T23:32:44Z 2009-12-05T00:14:27Z <p>I want to display some floating boxes (divs containing thumbnails) and the number of thumbnails depends on the current page width. For example:</p> <pre><code>&lt;div class="container"&gt; &lt;div class="box1" style="float:left;width:120px;height:120px;margin-right:10px;"&gt;Thumbnail image here&lt;/div&gt; &lt;div class="box2" style="float:left;width:120px;height:120px;margin-right:10px;"&gt;Thumbnail image here&lt;/div&gt; &lt;div class="box3" style="float:left;width:120px;height:120px;margin-right:10px;"&gt;Thumbnail image here&lt;/div&gt; &lt;div class="box4" style="float:left;width:120px;height:120px;margin-right:10px;"&gt;Thumbnail image here&lt;/div&gt; .......... ETC &lt;/div&gt; </code></pre> <p>the problem is that for a given width it shows for example 4 boxes on each row, but they are all left aligned and there is some white space to the right, how can i center horizontally for each row??</p> <p>Something like this: <a href="http://realworldstyle.com/thumbs%5F3.html" rel="nofollow">http://realworldstyle.com/thumbs%5F3.html</a> but with boxes centered horizontally on the page...</p> <p>thanks in advance,</p> http://stackoverflow.com/questions/673917/css-problem-with-ie-right-alignment-does-not-work-in-a-div-inside-a-table-cell 1 CSS problem with IE - right-alignment does not work in a div inside a table cell simon 2009-03-23T15:48:55Z 2009-12-04T16:05:10Z <p>Float:right specified for a div inside a table cell seems to have no effect in IE. I have also tried text-align right, among other things, to align the layer contents to the right, but without success in IE 7. </p> <p>CSS snippet: <pre><code> .workloadcell { background-color: #E6D7E9; padding: 0px; width: 14px; height: 16px; text-align: right; }</p> <p>div.workload { background-color: #E6D7E9; text-align: right; width: 14px; float: right; } </pre></code></p> <p>HTML snippet: <pre><code> &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 1 &lt;/div&gt; &lt;/td&gt; </pre></code></p> <p>Both the HTML and the CSS validate, and in Firefox the text aligns right, as it should. If you want to test the complete code by copy/pasting it, it's here:</p> <p><pre><code> &lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.01//EN&quot; &quot;<a href="http://www.w3.org/TR/html4/strict.dtd&quot;&amp;gt" rel="nofollow">http://www.w3.org/TR/html4/strict.dtd&quot;&amp;gt</a>; &lt;html&gt; &lt;head&gt; &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html;charset=iso-8859-1&quot;&gt; &lt;title&gt;Table Test&lt;/title&gt; &lt;style type=&quot;text/css&quot;&gt; td { border: 1px solid black; }</p> <p>.workloadcell { background-color: #E6D7E9; padding: 0px; width: 14px; height: 16px; text-align: right; }</p> <p>div.workload { background-color: #E6D7E9; text-align: right; width: 14px; float: right; } &lt;/style&gt; &lt;/head&gt;</p> <p>&lt;body&gt; &lt;table&gt; &lt;tr&gt; &lt;td&gt; &amp;nbsp; &lt;/td&gt; &lt;td colspan=&quot;4&quot;&gt; &lt;div&gt; 2008 &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; &amp;nbsp; &lt;/td&gt; &lt;td&gt; &lt;div&gt; Q1 &lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt; Q2 &lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt; Q3 &lt;/div&gt; &lt;/td&gt; &lt;td&gt; &lt;div&gt; Q4 &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; workload forecast &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 1 &lt;/div&gt; &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 2 &lt;/div&gt; &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 2 &lt;/div&gt; &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 2 &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt; actual workload &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 3 &lt;/div&gt; &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 3 &lt;/div&gt; &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 2 &lt;/div&gt; &lt;/td&gt; &lt;td class=&quot;workloadcell&quot;&gt; &lt;div class=&quot;workload&quot;&gt; 3 &lt;/div&gt; &lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </pre></code></p> <p>(I know that the CSS is are not optimal in the sense that the class declarations are repeated for several elements, but please don't comment on this, if it is not relevant to the problem)</p> http://stackoverflow.com/questions/1847460/how-can-i-make-a-float-top-with-css 6 How can i make a float top with css? mck89 2009-12-04T14:55:31Z 2009-12-04T15:24:38Z <p>Hi, i know that css only supports left and right values for float property, but is there a technique to implement a float top? I try to explain. I have the following code:</p> <pre><code>&lt;div style="float:left"&gt; &lt;div style="float:left"&gt; &lt;div style="float:left"&gt; .... </code></pre> <p>with this code every div is floated to left until the right limit of the page is reached. I want to do the same thing but vertically, so that every div is placed at the bottom of the previous one and then when the bottom limit of the page is reached a new column is created. Is there a way to do this using only css (and maybe editing the html code)?</p> http://stackoverflow.com/questions/1835787/what-is-the-range-of-values-a-float-can-have-in-python 1 What is the range of values a float can have in Python? devoured elysium 2009-12-02T21:02:28Z 2009-12-04T10:02:35Z <p>What are its smallest and biggest values in python?</p> http://stackoverflow.com/questions/1844207/how-to-make-a-div-to-wrap-two-float-divs-inside 3 how to make a div to wrap two float divs inside? unknown (google) 2009-12-04T01:02:21Z 2009-12-04T03:13:48Z <p>I don't know if it's a common problem, but I can't find the solution in web so far. I would like to have two divs wrapped inside another div, however these two divs inside have to be align the same level (for example: left one takes 20%width of the wrappedDiv, right one take another 80%). To achieve this purpose, I used the following example CSS. However, now the wrap DIV didn't wrap those divs all. The wrap Div has a small height than those two divs contained inside. How could I make sure that the wrap Div has the largest height as the contained divs? Thanks!!!</p> <p> liquid test body { margin: 0; padding: 0; height:100%; } #nav { float: left; width: 25%; height: 150px; background-color: #999; margin-bottom: 10px; }</p> <pre><code> #content { float: left; margin-left: 1%; width: 65%; height: 150px; background-color: #999; margin-bottom: 10px; } #wrap { background-color:#DDD; height:100%; } </code></pre> <p> </p> <h1>wrap1 </h1> &lt; Back to article <p> </p> <p><code>$</code></p> http://stackoverflow.com/questions/867587/css-footer-trying-to-split-into-2-columns 1 css footer - trying to split into 2 columns Helen 2009-05-15T08:36:30Z 2009-12-04T01:38:55Z <p>I'm trying to split my footer so that there is left aligned and right aligned text. I have the following but the two elements are displaying one after the other:</p> <pre><code>#footer { clear: both; background-color: #330066; padding: .5em; font-size: 0.8em; color: #fff; } #footer p .left { text-align:left; float:left; } #footer p .right { float:right; text-align:right; } &lt;div id="footer"&gt; &lt;p class="left"&gt; Copyright © 2009 &lt;/p&gt; &lt;p class="right"&gt; Designed by xxxxxx &lt;/p&gt; &lt;/div&gt; </code></pre> <p>Should be really simple I'm sure but I just can't get it working - can anyone offer any advise please?</p> <p>Thanks</p> <p>Helen </p> http://stackoverflow.com/questions/1839364/float-addition-issue 0 Float Addition issue [closed] razack 2009-12-03T11:31:42Z 2009-12-03T11:48:30Z <blockquote> <p><strong>Possible Duplicate:</strong><br> <a href="http://stackoverflow.com/questions/1839225/float-addition-promoted-to-double">Float addition promoted to double?</a> </p> </blockquote> <p>Dot Net C++ </p> <pre><code>float xMin = 20000.0; float xOff = 0.001; float xMax = xMin + xOff; </code></pre> <p>xMax is becoming 20000.002 instead of 20000.001</p> <p>Any fix for this</p> http://stackoverflow.com/questions/1837900/use-two-divs-in-parallel-in-ie 0 use two divs in parallel in IE madhavi 2009-12-03T05:46:44Z 2009-12-03T06:09:07Z <p>Thanks for answering</p> http://stackoverflow.com/questions/1834825/how-do-ldexp-and-frexp-work-in-python 1 How do ldexp and frexp work in python? Thomas Ahle 2009-12-02T18:21:10Z 2009-12-03T00:31:38Z <p>The python frexp and ldexp functions splits floats into mantissa and exponent. Do anybody know if this process exposes the actual float structure, or if it requires python to do expensive logarithmic calls?</p> http://stackoverflow.com/questions/1833923/how-to-read-a-binary-file-and-display-the-output-as-a-float-in-c 2 How to read a binary file and display the output as a float in C? Ben 2009-12-02T16:08:30Z 2009-12-02T16:34:44Z <p>Hi,</p> <p>I'm trying to read 4-byte numbers stored in a binary file, but I don't seem to be getting the correct output. Here's my code:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; int main () { int res; FILE *file; float v; //Open file file = fopen("prj3.dat", "rb"); if (!file) { printf("Unable to open file input.dat\n"); } else { res = fread(&amp;v, sizeof(v), 1, file); if(res==-1) { printf("Unable to open file input.dat\n"); } else { printf("v = %f\n", v); } } return; } </code></pre> <p>My output is v = -961576900.0000000, but it should be v = 3.14159. Any ideas as to where my problem is? </p> <p>NB. input.dat is the binary file: 11010000 00001111 01001001 01000000</p> <p>Thanks</p> http://stackoverflow.com/questions/1831827/how-decimal-places-are-converted-using-float-in-sql-server-2000-2005-2008 1 How Decimal places are converted using FLOAT in SQL Server 2000/2005/2008 kevchadders 2009-12-02T09:48:28Z 2009-12-02T10:27:52Z <p>Hi, in this <a href="http://stackoverflow.com/questions/1831466/drop-0-value-in-decimal-places/1831559#1831559">SO question</a> the OP wanted to drop the 0's in the decimal places for his results. Now the example I gave (below) to get around this was to CAST with DECIMAL, then CAST with FLOAT.</p> <p>e.g.</p> <pre><code>SELECT CAST(0.55 AS FLOAT) </code></pre> <p>Using the example above and running it in SQL Server 2005/2008 would seem to bring up the correct result of 0.55. But as Peter in the other post pointed out, running it in SQL Server 2000 produces 0.55000000000000004.</p> <p>So my questions are:</p> <ul> <li><p>Is FLOAT to be avoided at all cost when it comes to data conversion in SQL?</p></li> <li><p>Why does <code>cast(0.55 as float)</code> yields <code>0.55000000000000004</code> in SQL2k yet <code>0.55</code> in later edtions?</p></li> <li><p>Has Microsoft made using FLOAT more reliable in later versions of SQL Server?</p></li> </ul> <p>Thanks for your time.</p> http://stackoverflow.com/questions/1829541/how-to-put-text-over-an-image-without-absolute-positioning-or-setting-the-image-a 0 How to put text over an image without absolute positioning or setting the image as backbround Agos 2009-12-01T22:57:04Z 2009-12-02T00:53:15Z <p>Hi, I'm trying to see if it is possible to put some text over an image without using position: absolute or having the image being, the background of an element.<br> The reason for the constraints is that the HTML code is going into an e-mail, and it turns out that hotmail supports neither.<br> I remember that when I first began studying CSS, fiddling around with float-ing text around images I often ended up with the text merrily going all over the image. Sadly, I can't reproduce that behavior.</p> <p>Full story (edited in):<br> I received a fancy layout from the graphics designer. It's basically a nice background picture, with logos linking to websites and what basically is a "text goes here" area in the middle.<br> As usual in these cases, I'm using tables to make sure that everything stays in place AND works crossbrowser+crossmailclient.<br> The problem arises from the fact that the middle "text goes here" area is not a white rectangle, but has a some background graphics.<br> Having made some test, it appears that Live Hotmail does not seem to like neither position: absolute or background-image; relative margins are also not good because they'd ruin the rest of the layout.</p> <p>Current version, works in any other mail client/website:</p> <pre><code>... &lt;td&gt; &lt;img src='myimage.jpg' width='600' height='400' alt=''&gt; &lt;p style="position: absolute; top: 120px; width: 500px; padding-left: 30px;"&gt; blablabla&lt;br&gt; yadda yadda&lt;br&gt; &lt;/p&gt; &lt;/td&gt; ... </code></pre> <p>Of course, “it's not possible” could be a perfectly acceptable answer, but I hope not ;)</p> http://stackoverflow.com/questions/1827851/css-float-problem 1 css float problem vwfreak034 2009-12-01T18:04:14Z 2009-12-01T19:23:33Z <p>I have about 8 paragraphs which I would like to float left, but some of the paragraphs have more text than others.</p> <p>So when I view in a browser, I get the left to right floating that I want, but I get multiple short paragraphs in a column when some paragraphs are longer and some are shorter.</p> <p>What I want is for each new paragraph to be in a new column.</p> <p>Can I do this with css, or will I need to use a table structure?</p> <p>Sorry, I would show this visually but the inline html doesn't work quite as expected.</p> http://stackoverflow.com/questions/1797990/sifr-3-no-text-wrap-around-floating-images 1 sIFR 3 no text wrap around floating images Jeremy Schultz 2009-11-25T16:06:44Z 2009-11-30T17:31:49Z <p>Is sIFR supposed to wrap around floating images? I have some headings next to a large image float:left and the image bumps the headline down below it. Headings that aren't beside floating images do wrap properly so the functionality is there, so my question is whether or not sIFR 3 text wraps beside floating images.</p> <p>Jeremy</p> http://stackoverflow.com/questions/1817516/linq-to-sql-strange-float-behaviour 0 linq to sql strange float behaviour Gregoire 2009-11-30T01:50:23Z 2009-11-30T02:46:14Z <p>Hello, I have a problem with a double (TaxRate here), that do not have the same value when it pass through functions:</p> <p>I first call a function</p> <pre><code>DataContext.UpdateCategory(theCategorie.Code, theCategorie.Description, theCategorie.TaxRate, theCategorie.TaxCode); </code></pre> <p>When I run the debugger the value of TaxRate is <strong>19.6</strong></p> <p>Then when I put a stop point in the dbml function that is called:</p> <pre><code> [Function(Name="dbo.UpdateCategory")] public int UpdateCategory([Parameter(Name="Code", DbType="VarChar(20)")] string code, [Parameter(Name="Description", DbType="NVarChar(512)")] string description, [Parameter(Name="TaxRate", DbType="Float")] System.Nullable&lt;double&gt; taxRate, [Parameter(Name="TaxCode", DbType="NChar(10)")] string taxCode) { IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)(MethodInfo.GetCurrentMethod())), uNSPSC, description, taxRate, taxCode); return ((int)(result.ReturnValue)); } </code></pre> <p>here the value is <strong>19.6000003814697</strong>. You see the strange added decimal? there are no operations between these two calls, so why these decimals appears?</p> http://stackoverflow.com/questions/1816552/where-does-c-standard-define-the-value-range-of-float-types 1 Where does C++ standard define the value range of float types? shojtsy 2009-11-29T19:49:33Z 2009-11-29T21:11:08Z <p>As far as I know floating point values are of the form n * 2^e, with</p> <ul> <li>float range being n = -(2^23-1) - (2^23-1), and e = -126 - 127,</li> <li>double range being n = -(2^52-1) - (2^52-1), and e = -1022 - 1023</li> </ul> <p>I was looking through the C++ standard, but failed to find the place where the standard specifies this, or mandates the association of the float, double and long double types with ranges defined in other (IEEE) standards. The only related thing I found in 3.9.1.8 is:</p> <blockquote> <p>There are three floating point types: float, double, and long double. The type double provides at least as much precision as float, and the type long double provides at least as much precision as double. The set of values of the type float is a subset of the set of values of the type double; the set of values of the type double is a subset of the set of values of the type long double. The value representation of floating-point types is implementation-defined.</p> </blockquote> <p>And no mention of the minimum range provided by the type.</p> <p>Where/how does the standard specify the (minimum?) value range of the floating point types? Or can a compiler freely choose any value range and still be standard compliant?</p> http://stackoverflow.com/questions/1796951/how-can-i-validate-a-field-which-is-to-be-inserted-into-a-float-column-in-the-dat 0 How can I validate a field which is to be inserted into a float column in the database? [closed] Ritz 2009-11-25T13:35:43Z 2009-11-26T03:35:41Z <p>I have a field entered by the user and I need to validate it to ensure it will be okay to insert into a column in my database.</p> <p>What is the best way to do this?</p> <p>Please provide your rationale as to why that's the best way.</p> http://stackoverflow.com/questions/1798936/centering-float-left-divs-in-the-body 0 Centering float left div's in the body Andy 2009-11-25T18:17:52Z 2009-11-25T21:29:03Z <p>hello guys!</p> <p>i have this piece of code</p> <pre><code>&lt;body&gt; &lt;? while.. (blah blah blah){ ?&gt; &lt;div class="product"&gt; something &lt;/div&gt; &lt;? } ?&gt; &lt;/body&gt; </code></pre> <p>and the css file is</p> <pre><code>.product{ width:350px; float:left; } </code></pre> <p>the problem is that body doesn´t have a width, well... actually it has, 90%, but my problem is on the different resolutions, it works perfect for me (1680px width) but when i switch to 1024 as example, the products seems to be off (aligned to the left)</p> <p>is there any posibility to center those divs with a non static with on their parent container?</p> http://stackoverflow.com/questions/1790383/float-not-correct-in-mysql 2 Float not correct in MySQL jimbo 2009-11-24T14:22:27Z 2009-11-25T05:08:25Z <p>Hi,</p> <p>I am entering '35444650.00' as a float into my MySQL and it keeps reformatting to 35444648.00, any help welcome...</p> http://stackoverflow.com/questions/1638229/python-class-with-integer-emulation 1 Python Class with integer emulation Günther Jehle 2009-10-28T16:02:57Z 2009-11-24T18:44:15Z <p>Given is the following example:</p> <pre><code>class Foo(object): def __init__(self, value=0): self.value=value def __int__(self): return self.value </code></pre> <p>I want to have a class <em>Foo</em>, which acts as an integer (or float). So I want to do the followng things:</p> <pre><code>f=Foo(3) print int(f)+5 # is working print f+5 # TypeError: unsupported operand type(s) for +: 'Foo' and 'int' </code></pre> <p>The first statement <code>print int(f)+5</code> is working, cause there are two integers. The second one is failing, because I have to implement <code>__add__</code> to do this operation with my class.</p> <p>So to implement the integer behaviour, I have to implement all the integer emulating methods. How could I get around this. I tried to inherit from <code>int</code>, but this attempt was not successful.</p> <p><strong>Update</strong></p> <p>Inheriting from <code>int</code> fails, if you want to use a <code>__init__</code>:</p> <pre><code>class Foo(int): def __init__(self, some_argument=None, value=0): self.value=value # do some stuff def __int__(self): return int(self.value) </code></pre> <p>If you then call:</p> <pre><code>f=Foo(some_argument=3) </code></pre> <p>you get:</p> <pre><code>TypeError: 'some_argument' is an invalid keyword argument for this function </code></pre> <p>Tested with Python 2.5 and 2.6</p> http://stackoverflow.com/questions/1559590/haskell-force-floats-to-have-two-decimals 1 Haskell: Force floats to have two decimals invaderzim 2009-10-13T11:15:48Z 2009-11-23T20:15:40Z <p>Using the following code snippet:</p> <pre><code>(fromIntegral 100)/10.00 </code></pre> <p>Using the Haskell '98 standard prelude, how do I represent the result with two decimals?</p> <p>Thanks.</p>