| | |||||
| ||||||||
| Web Design Discussion Discussion of web design techniques, advice, browser issues, software, design firms. |
![]() |
| | LinkBack | Thread Tools |
| | #2 (permalink) |
| NamePros Regular Join Date: Sep 2002 Location: Canada
Posts: 481
![]() | not sure what you mean... a boarder is a boarder, its neither square nor rectangular
__________________ Sometimes I lay awake at night and I ask "Where have I gone wrong?" Then a little voice says "This is going to take more than one night" |
| |
| | THREAD STARTER #3 (permalink) | ||||
| Account Closed Join Date: Feb 2003
Posts: 45
![]() |
I guess my qustion is : Can I put two paragraphs side by side and put a seperate border around each paragraph using CSS? I've tried to do it and what ends up happening is, the second paragraph winds up, not next to the first paragraph, but underneath it. If both paragraph's, with borders, could be represented by an upper cased "D" they would look like this on my page: ????: NamePros.com http://www.namepros.com/web-design-discussion/14618-borders-in-css.html D D | ||||
| |
| | #4 (permalink) |
| NamePros Member Join Date: Jan 2003
Posts: 117
![]() | hmmmm, ok. i'll pretend to understand what you're saying for a bit.... Why not put the paragraphs in two divs, have a width for each div, and absolute position them? so like in your CSS file it would be like #div { border: 2px solid #000; width: 100px; } and then your paragraphs in your html file would be like: <div id="div" style="position: absolute; top:0px; left:0px;"> <p>paragraph 1</p> ????: NamePros.com http://www.namepros.com/showthread.php?t=14618 </div> <div id="div" style="position: absolute; top:0px; left:105px;"> <p>paragraph 2</p> </div> hopefully that'll make sense. |
| |
| | THREAD STARTER #5 (permalink) | ||||
| Account Closed Join Date: Feb 2003
Posts: 45
![]() |
P.S. The secret to understanding what I say is very simple: Assume you're dealing with someone who knows so little about html, css and javascript he doesn't even know how to phrase his questions or if the codes he's using are invalid or long out of use. | ||||
| |