Tagged Questions
The floating tag has no wiki summary.
12
votes
10answers
591 views
How does Excel successfully Rounds Floating numbers even though they are imprecise?
For example,
This blog says 0.005 is not exactly 0.005 but rounding that number yields the right result.
I tried all kinds of Round in my C++ and I have failed for rounding numbers to the certain ...
4
votes
2answers
86 views
Convert mantissa and exponent into double
In a very high performance app we find the the CPU can calculate long arithmatic significantly faster then with doubles. However, in our system it was determined that we never need more then 9 decimal ...
4
votes
5answers
129 views
What is the fastest way to generate a random integer in javascript?
Normally this is how you get a random number in javascript.
var random = Math.random();
However this method seems inefficient when it comes to generating random integers.
Firstly, the random ...
4
votes
1answer
1k views
Centering floating list items <li> inside a div or their <ul>
first of all here is my html code:
<div class="imgcontainer">
<ul>
<li><img src="1.jpg" alt="" /></li>
<li><img src="2.jpg" alt="" ...
4
votes
2answers
974 views
How to make children auto fit parent's width only with CSS?
I have a server-side component that generates a fluid layout "toolbar" using DIV without fixed width, generating many A inside it.
Then I need customize that layout to make all A tags auto fit to the ...
4
votes
4answers
6k views
How to horizonatally center a floating element of a variable width?
How to horizonatally center a floating element of a variable width?
Edit: I already have this working using a containing div for the floating element and specifying a width for the container (then ...
3
votes
3answers
219 views
interview question printing a floating point number
What's the output of the following program and why?
#include <stdio.h>
int main()
{
float a = 12.5;
printf("%d\n", a);
printf("%d\n", *(int *)&a);
return 0;
}
My ...
3
votes
2answers
220 views
Floating point comparison functions explanation
Anyone care to explain in detail (code by code) what this is doing? I have read Bruce Dawson's paper on comparing floats and have found converted C# code of it but don't quite understand it. What is ...
3
votes
8answers
484 views
What's the benefit of accepting floating point inaccuracy in c#
I've had this problem on my mind the last few days, and I'm struggling to phrase my question. However, I think I've nailed what I want to know.
Why does c# accept the inaccuracy by using floating ...
3
votes
6answers
560 views
how to round off a floating number in python
Suppose I am having 8.8333333333333339 and I want to convert it to 8.84, how can I accomplish this in python ? round(8.8333333333333339 , 2) gives 8.8300000000000001 and not 8.84. I am new to python ...
3
votes
1answer
320 views
IE7 div floating bug
I have the following
<div id="border" style="width:100%; border:8px solid #FFF">
<div id="menu" style="width:250px; float:left;" >
Some menu
</div>
<div ...
3
votes
12answers
8k 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 ...
3
votes
5answers
996 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">
...
3
votes
4answers
6k 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 ...
2
votes
0answers
48 views
A Java Scroll Indicator with floating scrollbars which only appears during scrolling
I need a scroll pane with scrollbars only visible during scroll events or when needed to pull.
Something that looks like the scroll bars on the nowadays smartphones.
I searched a lot but found only ...
2
votes
2answers
51 views
In Objective C: Printing floating points as it is
I want to print floats points in a simple calculator program for iOS:
if the result of calculation is 5.555123125, then print the exact 5.555123125.
if the result is 1.2, then 1.2.
if 2.555, then ...
2
votes
2answers
33 views
issue with css floating and auto width
I have two div's on a page: one floating left and the other right:
.lefttty {
height: 200px;
width: auto;
min-width:200px;
float: left;}
.rightyyyy {
height: 200px;
...
2
votes
1answer
42 views
How can I make two floated <divs> not overlap?
I'm designing a website that has banners that are floated left and right. When I make the window very narrow, the banner on the right begins to cover the banner on the left. How can I stop the ...
2
votes
1answer
40 views
Positiong a table next to a floating image
I'd like to position a table next to a floating image while keeping the width of the table 100% and not overflowing the width of the parent element.
I've tried various techniques but haven't achieved ...
2
votes
3answers
63 views
3 columns with float left and the same width at full screen
I have a full screen lay-out and what I want is 3 colums with the same width and left floating.
What i have is this:
<div class="table_small" style="float:left; margin-right:20px;">
...
2
votes
1answer
100 views
jQuery Floating Header Is Laggy
Environment:
Rails 3.1rc5 with jQuery, ubuntu 11.04, Google Chrome (13), Mozilla Firefox (6.0)
I am working on a project that has a pretty limited, in-office rollout - so I can safely say that we ...
2
votes
2answers
702 views
JQuery floating div stop after scrolling down certain div
Please check this link
http://jsfiddle.net/sasindu555/xaYTt/
I want to stop floating special_features div after scrolling down stop div. How do that. Please help me. Thanks.
2
votes
1answer
237 views
Can I make WebView element “floating” on top of my main layout?
Is it possible to make WebView (or any view that can parse / display html) a "floating" window on top of the main layout?
Basically I have a list of links displayed in a listView. When the user ...
2
votes
3answers
153 views
Can you explain “floating point” number? [closed]
Possible Duplicate:
What exactly is a float?
I just starting to learn programming. I'm learning Python using the pdf "Learn Python The Hard Way" On one of the exercises it asked for what is ...
2
votes
6answers
96 views
Moving the point downwards in a floating point number
First off all, thanks for the attention, I'm new to this site ^^ so excuse me if I do something wrong...
I have a huge problem with my Python code... I'm new to programming, and I'm new to Python as ...
2
votes
1answer
393 views
Howto create css columns that incl. a scrollable middle column and floating left and right columns
I'm creating a webpage where I need a content column in the center of the page (including a fixed width) and two non-scrollable (fixed) columns at the left and the right side of that content column ...
2
votes
1answer
150 views
In CSS, how to not float a 300px wide Div to the next line?
Say, there is a bar that is styled at the bottom of the viewport, using
position: fixed; bottom: 0; left: 0; width: 100%; height 50px; overflow: hidden
and then there are 4 Divs inside it, each one ...
2
votes
4answers
972 views
set equal height on multiple divs
I need to set equal height on a series of divs inside another div wrapper. The problem is that I dont want the same height on all of them. The page kind of have 3 columns and the floating divs can be ...
1
vote
2answers
49 views
How can I pretty print the arguments' float default value in python 2.x?
Give follow python function define:
def Foo(a=0.1, b=1.6):
pass
when I call 'help(Foo)', I will get:
Help on function Foo in module __main__:
Foo(a=0.10000000000000001, b=1.6000000000000001)
...
1
vote
1answer
219 views
extjs 3.3: floating panel
I am trying to create a floating panel over other pre-created panels, I tried following simple codes, but failed:
var testPanel = new Ext.Panel({
id: 'testP',
...
1
vote
0answers
258 views
Replace iframe scrollbar with floating scroll similar to iPhone
Is there a way to replace the iframe scrollbars with a a floating bar similar to the one in iPhone using jQuery or another method?
I'm loading external sites inside the iFrames so I don't have the ...
1
vote
3answers
103 views
Place php code inside floating css container(s)?
i have a question in regards to php and css layers.
i have the following php code:
session_start();
// Retrieve all the data from the table
$SQL = "SELECT * FROM Exodus_planets WHERE login_id = ...
1
vote
1answer
153 views
how to make a specific column be moving in the SWT table in Eclipse RCP?
My question is that, I have created a SWT table with 23 columns in the Eclipse RCP. The table has only Horizontal Scroll Bar. In runtime, it is obvious that the columns to the left get obstructed when ...
1
vote
3answers
51 views
Webpage Round Floating Images
I'm trying to figure out how the balloons on this site are coded to appear to have transparent edges: http://www.dynamicdrive.com/dynamicindex4/flyimage.htm When I try to use a rounded image it always ...
1
vote
2answers
1k views
Fixed Floating Element Stop at Footer
I've used the code from http://jqueryfordesigners.com/fixed-floating-elements to float an element after scrolling to a certain point. Here is the site I'm working on: ...
1
vote
4answers
138 views
Unexpected output in C from float multiply
I am performing a multiplication and addition operation in C and am getting the wrong result.
I am performing the following operation:
#include <stdio.h>
#include <strlib.h>
#include ...
1
vote
3answers
321 views
Transparent, floating Android Activity doesn't allow updates to content behind it
I have tried and tried to get a transparent, floating Activity to show up (as an overlay), but allow whatever is behind it to still show AND update. Right now it seems that if the Activity behind mine ...
1
vote
2answers
716 views
How to create “floating TextViews” in Android?
I'm programmatically putting various TextViews into a LinearLayout with a horizontal orientation.
After 2h of research I couldn't find out how to tell Android not to squeeze all the TextViews in one ...
1
vote
1answer
391 views
jQuery: Scrolling accordion effect
I'm trying to reproduce an accordion effect when scrolling up and down shown on Apples website here: http://store.apple.com/us/compare/mac?mco=MTg4Mjg5Nzk&page=imac (click "Compare" on any mac ...
1
vote
2answers
119 views
Left content cuts into right floated content
In the screen shot you see a list of items on the left (not floated) and a display box on the right (floated). How can I prevent the left item's li element from cutting into the display box. The li ...
1
vote
3answers
669 views
Floating Menu in PrototypeJS
can someone please help me make a floating menu in prototypeJS? I found documentation to do it in jQuery, like here: ...
1
vote
1answer
70 views
How to make an imitation of apple.com cart
I would really love to make a left menu like apples shopping-cart.
What's unique is that it stays static while you scoll down but don't move over header, when you go back to top. And there is no ...
1
vote
2answers
527 views
How can I have a floating image (right aligned) with text that wraps around the image in Android Layout?
It's kind of hard to explain, but an example of what I'm wanting to accomplish is like this:
Here is some text | image |
that is printed | |
out in a view and ---------
it is wrapped around ...
1
vote
1answer
1k views
Floating window wpf
I want to create floating child window in my application. It should be look like floating bin in internet market. Window.ShowDialog is not well because user hasnt access to main window. Window with ...
1
vote
2answers
57 views
html - troubles with divs
It's me again with divs :(. I can't understand this...
There is parent-block:
#content
{
position: relative;
width: 92%;
margin: 0 auto;
height: 100%;
min-height: 500px;
border: 1px solid red;
}
...
1
vote
2answers
422 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
1answer
30 views
floating in div in ie 7
How to avoid the gap between - highlighted as circle
<div>
<SPAN style="float:right"><INPUT type="text"><LABEL>right</LABEL></SPAN>
<SPAN ...
0
votes
0answers
18 views
XAML for floating window in AvalonDock
Can someone provide me with an AvalonDock XAML code piece that when run opens the app with a floating window instead of being always docked inside the dock pane? I've seen programmatic ways to do it, ...
0
votes
1answer
33 views
negative numbers floating point subtraction circuit
probably wrong place to ask but I will try.
I have to design a circuit that would add/subtract floating point
I tried to do it using signed magnitude numbers in IEE 754 standard.
They are quite ...
0
votes
1answer
30 views
How to echo a floating point number within a bash script including the leading 0 before the dot
I am echoing a floating point variable. The results looks as follows:
.4983385178
I am using echo -e "$var". How can I tell echo also to print the 0 before the dot:
0.4983385178
Thanks in ...