0
votes
3answers
38 views
Proper usage of Floats (For those who love CSS standards)?
I would like to know if I'm using floats in the right way (efficiently) in this code bellow.
There are basically 3 columns (with float left, left and right assigned respectively). …
0
votes
1answer
52 views
IE Print CSS and spanning page breaks
I've been working on trying to fix an issue with print CSS and IE where things would disappear when printing in landscape mode.
It appears the issue is that the element I'm tryin …
0
votes
1answer
52 views
Firefox float positioning and Firefox div:hover not working how it should?
I'm working on a tricky bit of styling that's working on Safari/Webkit but not on Firefox/Gecko. I can't figure out just what's going wrong.
Here's the HTML that I'm using:
<d …
1
vote
3answers
78 views
CSS: What does clearing INSIDE a floated div do?
Quick question!
Does putting a "clear" element INSIDE a floated div do anything?
Like:
<div style="float: right">
blah blah
<div style="clear: right"></div>
< …
0
votes
3answers
88 views
CSS - Faux columns with background color instead of repeating background image?
Greetings,
I have a two-column (floated) layout set up where the columns need to "look" like they have matching heights. The "shorter" column has a background color, and needs to …
0
votes
2answers
79 views
CSS Div floats to the left of the page?
Hi
I have many pages, all with the same div and the same css applied to them all... but for some reason three of these pages, the container just floats left of the page?
It looks f …
0
votes
2answers
157 views
Internet explorer CSS FIX. Having trouble with floats in internet explorer
I have a simple problem but have not figured out what might be solution just yet. I used css reset to fix the issue with internet explorer but no dice. I also do not want to use re …
0
votes
3answers
103 views
How can you force a floating div to be the height of its parent?
HTML markup:
<div class="planRisk">
<div class="innerPlanRiskRight">
<div class="rmPlanFrequency">10 </div>
<div class="rmPlanSeverity" …
2
votes
3answers
173 views
Proper Usage and Formatting of a Float in Objective-C (or C)
Hi everyone,
I have an iPhone app. I am storing a float value, (distance), in my sqlite3 db. (The field in the db is formatted to float) I am able to store float values correctly …
1
vote
1answer
82 views
Bizarre float bug in IE7
On the webpage I'm working on here, I have a main div, and within the main div, and image div. Roughly speaking, the important HTML is:
<div id="wrapper">
<div id="ma …
0
votes
0answers
36 views
Formatting jquery-validate’s error text
I'm working a .net mvc project using xVal/nHibernate/jQuery-Validate.
The aspx is marked up as:
<%=Html.Password("Login.Password")%>
<%=Html.ValidationMessage("Login.Pas …
2
votes
4answers
126 views
Is there a library class to represent floating point numbers?
I am writing an application which does a lot of manipulation with decimal numbers (e.g. 57.65). As multiplications and divisions quickly erode their accuracy, I would like to store …
3
votes
1answer
176 views
Force all floating DIVs to match the height of their container
Howdy,
I'm trying to figure out a way to make three floating divs match the height of the largest floating div of the three (which, via the clearfix solution, is the height of the …
1
vote
1answer
85 views
2D-float array values scan
Hi,
I wrote a code by using C language as follows:
main()
{
float x[10][10]; int i,j; clrscr();
scanf("%d%d",&i,&j);
for(i=0;i<3;i++)
for(j=0;j&l …
1
vote
3answers
128 views
Is it correct that blueprint css allows you to formulate your layout as a grid instead of in terms of floats?
One of the arguments I've heard about blueprint css is that it lets you think of your layout in terms of a grid rather than in terms of floats. This seems like a big advantage to m …
