473,770 Members | 6,713 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

non-absolute divs, and 100% height

On some suggestions from this group, I've started to turn my internal
helpdesky site for our company to non-absolute positioning. I've been
reading O'Reilly's CSS book, and several [million] web sites and tips.
For the most part, things are going OK, but I can't seem to find an
answer to a particular problem.

Using a simpler example, below's some stuff...what I'm trying to do,
is get the DIVs inside the .mainbody DIV to be 100% of their parent's
height - these are namely the .leftnav and .middle DIVs. All I've seen
are absolute positioning examples, and I'm trying very hard to stay
away from that.

I just want both the .leftnav and .middle DIVs to scale in height
depending on which one's larger. Currently they don't budge in
relation to each other. I can get them to 100% of the /body/, if I set
a height on the body tag, but I can't get that same logic working
inside .mainbody, which I thought was the .leftnav/.middle parent.

losing it... thanks for any help :)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitl ed Document</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<style type="text/css">
<!--
..contain {
border: 1px solid gray;
margin-left: 10%;
margin-right: 10%;
}
..header {
border: 1px solid #000000;
}
..mainbody {
height: 100%;
border: 1px solid #FF0000;
}
..leftnav {
float: left;
width: 200px;
border: 1px solid #000000;
background:#FFC C00;
margin-left: -1px;
height: 100%;
}
..middle {
border: 1px solid #000000;
margin-left: 201px;
height: 100%;
}
..footer {
border: 1px solid #000000;
clear: both;
}
-->
</style>
</head>

<body>
<div class="contain" >
<div class="header">
header
</div><!--end header -->
<div class="mainbody ">
<div class="leftnav" >
leftnav<br /><br /><br /><br /><br />
</div> <!-- end leftnav -->
<div class="middle">
middle
</div> <!-- end middle -->
</div> <!-- end mainbody -->
<div class="footer">
footer
</div> <!-- end footer -->
</div> <!-- end contain -->
</body>
</html>
Jul 20 '05 #1
5 5007
In article Duane Lambe wrote:
On some suggestions from this group, I've started to turn my internal
helpdesky site for our company to non-absolute positioning. I've been
reading O'Reilly's CSS book, and several [million] web sites and tips.
For the most part, things are going OK, but I can't seem to find an
answer to a particular problem.
Would this help?
http://www.student.oulu.fi/~laurirai...float2col.html
Using a simpler example, below's some stuff...what I'm trying to do,
is get the DIVs inside the .mainbody DIV to be 100% of their parent's
height - these are namely the .leftnav and .middle DIVs. All I've seen
are absolute positioning examples, and I'm trying very hard to stay
away from that.


You are solving wrong problem. There is no need to elements actually be
same height, they just need to look like that.

[Snip code, I would prefer URL.]

--
Lauri Raittila <http://www.iki.fi/lr> <http://www.iki.fi/zwak/fonts>
Saapi lähettää meiliä, jos aihe ei liity ryhmään, tai on yksityinen
tjsp., mutta älä lähetä samaa viestiä meilitse ja ryhmään.

Jul 20 '05 #2
Kinda helps, but not quite what I was going for. That also reacts
badly with a container DIV that sets margins on both sides of the
page.... not very malleable, but thanks for the link.

I got a great reply from the guy that does Selectutorial
http://css.maxdesign.com.au/
which involved using a repeating background image, rather than a
background color for the DIV. Works great, and it scales the color
down should the main content DIV get larger than it.

Thanks again for the reply!

On Thu, 4 Dec 2003 00:33:39 +0200, Lauri Raittila
<la***@raittila .cjb.net> wrote:
In article Duane Lambe wrote:
On some suggestions from this group, I've started to turn my internal
helpdesky site for our company to non-absolute positioning. I've been
reading O'Reilly's CSS book, and several [million] web sites and tips.
For the most part, things are going OK, but I can't seem to find an
answer to a particular problem.


Would this help?
http://www.student.oulu.fi/~laurirai...float2col.html
Using a simpler example, below's some stuff...what I'm trying to do,
is get the DIVs inside the .mainbody DIV to be 100% of their parent's
height - these are namely the .leftnav and .middle DIVs. All I've seen
are absolute positioning examples, and I'm trying very hard to stay
away from that.


You are solving wrong problem. There is no need to elements actually be
same height, they just need to look like that.

[Snip code, I would prefer URL.]


Jul 20 '05 #3
In article Duane Lambe wrote:

Please don't top post in future.

[about my 2 col float example]
Kinda helps, but not quite what I was going for. That also reacts
badly with a container DIV that sets margins on both sides of the
page.... not very malleable, but thanks for the link.
On what browser? What happens? I tried different margin withs on Opera 7,
and only problem was that my list missed list-style:none;
I got a great reply from the guy that does Selectutorial
http://css.maxdesign.com.au/
which involved using a repeating background image, rather than a
background color for the DIV. Works great, and it scales the color
down should the main content DIV get larger than it.


Yes, that works too. Of course it depends on images, but that is small
drawback, unless you use such colors that are impossible to read whitout
image.

[snip fullquote]

--
Lauri Raittila <http://www.iki.fi/lr> <http://www.iki.fi/zwak/fonts>
Saapi lähettää meiliä, jos aihe ei liity ryhmään, tai on yksityinen
tjsp., mutta älä lähetä samaa viestiä meilitse ja ryhmään.

Jul 20 '05 #4
On Thu, 4 Dec 2003 22:38:13 +0200, Lauri Raittila
<la***@raittila .cjb.net> wrote:
[about my 2 col float example]
Kinda helps, but not quite what I was going for. That also reacts
badly with a container DIV that sets margins on both sides of the
page.... not very malleable, but thanks for the link.


On what browser? What happens? I tried different margin withs on Opera 7,
and only problem was that my list missed list-style:none;


IE - I don't have the example saved anymore, but all I did was add a
container div with a margin-left/right:10%, and the positioning of the
text in the right div misbehaved a little - like it was being pushed
over by the list in the left div, but only where the list was parallel
with the right-side text. There's likely a way around it, but I was
going for something a little simpler.

I got a great reply from the guy that does Selectutorial
http://css.maxdesign.com.au/
which involved using a repeating background image, rather than a
background color for the DIV. Works great, and it scales the color
down should the main content DIV get larger than it.


Yes, that works too. Of course it depends on images, but that is small
drawback, unless you use such colors that are impossible to read whitout
image.


True, a slight drawback, but I find it a little more intuitive,
instead of using hacks - however helpful they may be - to achieve the
same. Like I say, I'm no css-god, and I do a million other things
around here. This helpdesk site is just what I can eke out with spare
brain cycles. :)
Jul 20 '05 #5
In article Duane Lambe wrote:
On Thu, 4 Dec 2003 22:38:13 +0200, Lauri Raittila
<la***@raittila .cjb.net> wrote:
[about my 2 col float example]
Kinda helps, but not quite what I was going for. That also reacts
badly with a container DIV that sets margins on both sides of the
page.... not very malleable, but thanks for the link.


On what browser? What happens? I tried different margin withs on Opera 7,
and only problem was that my list missed list-style:none;


IE - I don't have the example saved anymore, but all I did was add a
container div with a margin-left/right:10%, and the positioning of the
text in the right div misbehaved a little - like it was being pushed
over by the list in the left div, but only where the list was parallel
with the right-side text. There's likely a way around it, but I was
going for something a little simpler.


Hm. need to test that someday, when I have time.

--
Lauri Raittila <http://www.iki.fi/lr> <http://www.iki.fi/zwak/fonts>
Saapi lähettää meiliä, jos aihe ei liity ryhmään, tai on yksityinen
tjsp., mutta älä lähetä samaa viestiä meilitse ja ryhmään.

Jul 20 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
3754
by: klaus triendl | last post by:
hi, recently i discovered a memory leak in our code; after some investigation i could reduce it to the following problem: return objects of functions are handled as temporary objects, hence their dtor is called immediately and not at the end of the function. to be able to use return objects (to avoid copying) i often assign them to a const reference. now, casting a const return object from a function to a non-const reference to this...
3
12264
by: Mario | last post by:
Hello, I couldn't find a solution to the following problem (tried google and dejanews), maybe I'm using the wrong keywords? Is there a way to open a file (a linux fifo pipe actually) in nonblocking mode in c++? I did something ugly like --- c/c++ mixture --- mkfifo( "testpipe", 777);
25
7644
by: Yves Glodt | last post by:
Hello, if I do this: for row in sqlsth: ________pkcolumns.append(row.strip()) ________etc without a prior:
32
4526
by: Adrian Herscu | last post by:
Hi all, In which circumstances it is appropriate to declare methods as non-virtual? Thanx, Adrian.
8
3514
by: Bern McCarty | last post by:
Is it at all possible to leverage mixed-mode assemblies from AppDomains other than the default AppDomain? Is there any means at all of doing this? Mixed-mode is incredibly convenient, but if I cannot load/unload/reload extensions into my large and slow-to-load application during development without restarting the process then the disadvantages may outweigh the advantages. I've got a mixed-mode program in which I create a new AppDomain...
14
8466
by: Patrick Kowalzick | last post by:
Dear all, I have an existing piece of code with a struct with some PODs. struct A { int x; int y; };
11
3453
by: ypjofficial | last post by:
Hello All, So far I have been reading that in case of a polymorphic class ( having at least one virtual function in it), the virtual function call get resolved at run time and during that the vtable pointer is made use of.. eg. class one {
2
6118
by: Ian825 | last post by:
I need help writing a function for a program that is based upon the various operations of a matrix and I keep getting a "non-aggregate type" error. My guess is that I need to dereference my pointers, but I'm not sure. Please help. The code: void equate(matrix *A, matrix *B) { int i, j; assert(A.row_dim == B.col_dim && A.col_dim == B.col_dim); for(i=0; i < A.row_dim; i++) for(j=0; j < A.col_dim; j++)
399
12938
by: =?UTF-8?B?Ik1hcnRpbiB2LiBMw7Z3aXMi?= | last post by:
PEP 1 specifies that PEP authors need to collect feedback from the community. As the author of PEP 3131, I'd like to encourage comments to the PEP included below, either here (comp.lang.python), or to python-3000@python.org In summary, this PEP proposes to allow non-ASCII letters as identifiers in Python. If the PEP is accepted, the following identifiers would also become valid as class, function, or variable names: Löffelstiel,...
12
29913
by: puzzlecracker | last post by:
is it even possible or/and there is a better alternative to accept input in a nonblocking manner?
0
9591
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9425
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10225
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10053
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7415
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6676
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5312
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5449
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3573
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.