Tagged Questions

1
vote
2answers
19 views

sIFR 3 no text wrap around floating images

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 …
0
votes
2answers
73 views

how to stop floating (sliding) div at footer

http://stackoverflow.com/questions/225843/how-can-i-have-a-sliding-menu-div-that-doesnt-move-unless-the-page-is-scrolled-d i used the code from this link for a floating menu. it has how to stop the …
0
votes
6answers
102 views

In floating point is 0.1 the same as 1/10? [closed]

Possible Duplicate: Why can’t decimal numbers be represented exactly in binary? I am told that the floating point representation of 1/10 may be different from that of 0.1 ... can …
0
votes
3answers
97 views

Mozilla canvas adding floating text

Hi, In my canvas element,i want to add a draggable text over an image.User should able to move it within the canvas area.I could add text by using some API functions, but i have no idea of movable …
0
votes
3answers
122 views

Reading floating numbers from sqlite database in iphone

I need to read floating point decimals from sqlite db I have created Variable type in database as INTEGER i am reading with sqlite3_column_int to NSInteger variables which parts should changed so …
0
votes
2answers
52 views

Div popup of a movie or image

I am looking for a Javascript that will pop up a modal floating div which can hold an image and will ghost our the full background of a web page. Sort of like the way the movie pops up here in this …
2
votes
5answers
219 views

double type digits in C++

The IEE754 (64 bits) floating point is supposed to correctly represent 15 significant digit although the internal representation has 17 ditigs. Is there a way to force the 16th and 17th digits to zero …
3
votes
6answers
238 views

How to avoid empty clear divs?

I have been using a lot of floats recently like this: <div id="buttons"> <input type="button" id="btn1" value="Button One"> <input type="button" id="btn2" value="Button Two"> …
0
votes
1answer
213 views

Floating Bottom Bar jerky when moved

Hi all, I created this sample page with the bottom floating bar http://www.innovie.com/Untitled-3.html The problem is that when I move the scroll bar on the right, the floating bottom bar is moving …
0
votes
3answers
375 views

The second floating div in chrome clears down before first div.

Two divs are next to eachother, both floating left within a wrapper. In IE and firefox they appear correctly, but in Chrome, the 2nd floating div clears down below Div A. When I remove "float:left" in …
2
votes
8answers
1k views

C++: How to Convert From Float to String Without Rounding, Truncation or Padding?

I am facing a problem and unable to resolve it. Need help from gurus. Here is sample code:- float f=0.01f; printf("%f",f); if we check value in variable during debugging f contains '0.0099999998' …
1
vote
4answers
683 views

How to make floating inner divs the same height as the highest div.

In the following code I would like the div with 'y' to match the height of the div with the 3 'x's. <div style="border: 0px solid red; margin: 0px 0px 5px; overflow: hidden;"> <div …
0
votes
1answer
942 views

iPhone Development - Show Floating View with Table View

I have a Tab Bar Application with Navigation Controllers on each Tab Item. I want to add a floating (semi transparent view) on my Table View just above my Tab Bar. How can i achieve the results? The …