5
votes
7answers
2k views
C++ random float
How do I generate random floats in C++?
I thought I could take the integer rand and divide it by something, would that be adequate enough?
0
votes
4answers
39 views
Center float boxes horizontally
I want to display some floating boxes (divs containing thumbnails) and the number of thumbnails depends on the current page width. For example:
<div class="container">
<div class="box1" …
0
votes
2answers
34 views
Float issue with jQuery/javascript and WebKit
Hi,
I'm having a problem related to WebKit:
http://demo.frojd.se/webkit/index.html
When you click "Menu item 1" it shows it's children.
This renders fine in Firefox 3.5, IE8 and in Opera 10.
In …
1
vote
3answers
2k views
CSS problem with IE - right-alignment does not work in a div inside a table cell
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 …
5
votes
4answers
57 views
How can i make a float top with css?
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:
<div …
1
vote
5answers
154 views
What is the range of values a float can have in Python?
What are its smallest and biggest values in python?
3
votes
5answers
57 views
how to make a div to wrap two float divs inside?
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 …
1
vote
7answers
907 views
css footer - trying to split into 2 columns
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:
#footer {
clear: both;
…
0
votes
5answers
109 views
Float Addition issue [closed]
Possible Duplicate:
Float addition promoted to double?
Dot Net C++
float xMin = 20000.0;
float xOff = 0.001;
float xMax = xMin + xOff;
xMax is becoming 20000.002 instead of 20000.001
Any …
0
votes
2answers
29 views
use two divs in parallel in IE
Thanks for answering
1
vote
3answers
19 views
How do ldexp and frexp work in python?
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 …
2
votes
2answers
45 views
How to read a binary file and display the output as a float in C?
Hi,
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:
#include <stdio.h>
#include <stdlib.h>
int main ()
{
…
1
vote
1answer
34 views
How Decimal places are converted using FLOAT in SQL Server 2000/2005/2008
Hi, in this SO question 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.
e.g.
…
0
votes
4answers
71 views
How to put text over an image without absolute positioning or setting the image as backbround
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.
The reason for the constraints is that …
1
vote
3answers
85 views
css float problem
I have about 8 paragraphs which I would like to float left, but some of the paragraphs have more text than others.
So when I view in a browser, I get the left to right floating that I want, but I get …
