Questions tagged [floating]

This tag is related to GUI elements that either should be or appear to be floating above a panel or background, or in case of certain types of general layout.

This tag is related to GUI elements that either should be or appear to be floating above a panel or background, or in case of certain types of general layout.

800 questions
0
votes
1 answer

Min Width on floating Columns (HTML\CSS)

i need your assistance. I am using the below design, but want to set it so that at a set size the columns will no long compress\shrink. I have tried setting "min-width", but just cant get it to work. Please…
0
votes
1 answer

floating elements - issues in grid

I'm building a webshop with an overview of products in a grid. It's three products in a row with a description(or title) below the product image. When they all have the same height, everything works perfect. When one of the products in a row has a…
Luc
  • 1,765
  • 5
  • 24
  • 44
0
votes
1 answer

.each animate with random value

I'm trying to make a few divs (which will be images of baloons) hover up and down but with random values so that they are not all going up and down together and look a little more floaty. Here is the JSFiddle: http://jsfiddle.net/FLMp8/425/ I've…
DannieCoderBoi
  • 728
  • 2
  • 12
  • 31
0
votes
4 answers

convert string(<0.005) to floating point number(0.005) - python 2.7

I have a sample of a list that i am iterating through, and trying to find the maximum value and require only the numbers. Im ignoring the blank spaces but need to change the '<0.005' to just 0.005, so i can use it. lst = [['<0.005'], …
user3699095
0
votes
0 answers

Width of a div element in Chrome

Chrome: https://i.stack.imgur.com/Ob1E9.jpg Firefox: https://i.stack.imgur.com/8bdw5.jpg Well, I only have a
in my , here's the code:
Together with some simple styles: #wrapper { width:…
Arno
  • 356
  • 5
  • 18
0
votes
1 answer

undefined reference to pow

int** truthtable(int n) { int i,k=0,m,a,b; a=n; int **truthtablearray=(int**)malloc(sizeof(int*)*n); for(i=0; i
0
votes
3 answers

Floating box to the right

I'm currently creating a website, which has a centered box with text and and such. Now, i also want a box floating on the right, with a little gap from my main box. I'll leave a picture here, where the red box i drew is the floating box i want to…
NotKimJongUn
  • 51
  • 2
  • 11
0
votes
1 answer

Floating items in the background like Pinterest

I need to create a function similar to the one that is on Pinterest or better on http://www.sumally.com - sliding elements in the background. Does anyone have a clue how to do this? Thanks, Aleksandar
user2186701
  • 31
  • 1
  • 7
0
votes
0 answers

Why do floating DIVs force multiple block elements to bottom of floating elements?

I am building an app using KnackHQ, which is a online database builder that allows you to generate custom forms and display content on an embedded element. Each part of the form is divided into DIV tags, so css can independently be applied to each…
Blackjack00
  • 169
  • 1
  • 4
0
votes
2 answers

C# Linux-MonoDevelop how to get Time

I'm trying to figure out how to find how much time is my application running, but all I can find are: Clock() timersub() and some similar stuff, but I can't use them, .... what must I include in my code so I can use them? like I include: using…
MilitaryG
  • 75
  • 1
  • 9
0
votes
1 answer

Randomizing images while floating up the screen

In my application I am planning on adding balloons that float up the screen and pop when they hit spikes. I need help implementing the balloon floating up the screen and making it randomly generate spawn points. I also need to add code that…
John paul
  • 69
  • 6
0
votes
1 answer

Floating asides to each side of a section?

I have two aside tags. One aside tag needs to be floated to the right, the other needs to be floated the left. They're both on the correct sides but the section won't let the asides go next to it, they are still below it. Here's the…
0
votes
1 answer

stop scrolling when DIV reaches footer

I tried an scrolling-div-reachs-footer script. The script works fine if the richt div is longer dan the left div. But in my example the right div is shorter and the left div goes over my footer (footer is on bottom screen if text (class row) is…
0
votes
1 answer

NaN and +-INF in floating point number system following IEEE754

In the standard, representation of NaN and INF is like this: For NaN: exponent = emax+1 & mantissa != 0; For INF: exponent = emax+1 & mantissa = 0; Their are many ways and calculations resulting these two value. But what ACTUALLY is NaN(INF)? And…
J.C.
  • 51
  • 1
  • 3
  • 9
0
votes
1 answer

problems with number of digits in float numbers in python

I am getting an error message KeyError: 0.73780000000000001 (this is the value of current radius ... see below) , when I try to use value of radius as a key in dictionary: The code looks somehow like this: for n in range(len(myarray)): radius =…
user3041107
  • 123
  • 2
  • 13