Hi, guys. How are you?
Well, you guys have heard of Be nice to Opera5 rule, haven't you?
I got a question about it. Here is my code:
quote:
.content{
width: 700px;
padding: 20px 50px 20px;
/*Here is Hack!*/
voice-family: "\"}\"";
voice-family: inherit;
width: 600px;
}
/* Be nice to Opera5 */
body>.content{width: 600px;}
In my understanding to body>.content{width: 600px;}, if class: content is child of body, the width of content will be 600px. Is that right? But if I nested content div inside of another div, called outline, is that still correct or do I have to change it like:
quote:
.outline>.content{width: 600px;}
My some of code is following:
quote:
.content{
width: 700px;
padding: 20px 50px 20px;
/*Here is Hack!*/
voice-family: "\"}\"";
voice-family: inherit;
width: 600px;
}
/* Be nice to Opera5 */
body>.content{width: 600px;}
.outline{
border: solid 5px #000;
}
-----------------------------------------
<body>
<div class="outline">
<p class="left">Well, I'd like to talk about my Meta and search engine problem.
I tried to find my web site using Google. But I couldn't. Hmm......I don't get the
answer why.... Please help.
</p>
<div class="content">
<p>Emperor 04-28-2003</p>
.....................................................
</div>
</div>
</body>
<html>
I am a bit confused. Do you know what I mean?
Hiroki Kozai