473,386 Members | 1,741 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

span to float right within a div

22
I have a navbar in a div, with several links. The last one is in a <span> because I want it to float to the right by itself. The span does float right, but it shows up below the navbar div. I want it within the div.

Is this doable? Thanks.

Expand|Select|Wrap|Line Numbers
  1. <?php
  2.  
  3. echo "<p>";
  4. echo '<div id="navbar">
  5.            <a href="edit_reg.php">edit</a> 
  6. &nbsp;<a href="undelete.php">undelete</a>
  7. &nbsp;<a href="print_reg.php">print</a>
  8. &nbsp;<a href="rep_sum.php">summary</a>
  9. <span style="float: right"><a href="index.php">reg page</a></span>
  10. </div><p>';
  11.  
  12. ?>
Aug 22 '08 #1
7 25748
JackRbt
22
I guess it's better to post the HTML output rather than just the PHP source:


Expand|Select|Wrap|Line Numbers
  1. <p>
  2. <div id="navbar">
  3.       <a href="edit_reg.php">edit</a> 
  4. &nbsp;<a href="undelete.php">undelete</a>
  5. &nbsp;<a href="print_reg.php">print</a>
  6. &nbsp;<a href="rep_sum.php">summary</a>
  7. <span style="float: right"><a href="index.php">reg page</a></span>
  8. </div>
  9.  
Aug 23 '08 #2
David Laakso
397 Expert 256MB
See if this works for you...

Expand|Select|Wrap|Line Numbers
  1.  
  2. CSS
  3. #navlist li{
  4. display: inline;
  5. list-style-type: none;
  6. padding-right: 20px;
  7. }
  8. .c1 {float:right;}
  9.  
  10.  
  11. HTML
  12.  
  13. <div id="navcontainer">
  14. <ul id="navlist">
  15. <li><a href="#">Item one</a></li>
  16. <li><a href="#">Item two</a></li>
  17. <li><a href="#">Item three</a></li>
  18. <li><a href="#">Item four</a></li>
  19. <li class="c1"><a href="#">Item five</a></li>
  20. </ul>
  21. </div>
  22.  
  23.  
  24.  
  25.  
Aug 23 '08 #3
JackRbt
22
Thanks, David. Unfortunately, that similarly drops down the right-floated item (in IE7 and FF2).

I guess I'll have to live with it... or use a table.
Aug 23 '08 #4
David Laakso
397 Expert 256MB
Sorry. My bad!
Same HTML as in previous example with this CSS:

Expand|Select|Wrap|Line Numbers
  1. html, body {margin:0;padding:0;}
  2. body {
  3. font : 100% arial, sans-serif;
  4. }
  5. #navcontainer ul{
  6. margin:0;
  7. padding: 0;
  8. }
  9.  
  10. #navlist li{
  11. float:left;
  12. padding-right:20px;
  13. display: inline;
  14. list-style-type: none;
  15. }
  16. .c1 {position:absolute;top: 0; right: 20px;}
  17.  
Quick checked in IE/6, IE/7, Win FF/2.0.0.14, Mac FF3.0.1, Mac Safari, Mac Opera.
Aug 23 '08 #5
JackRbt
22
okay, thanks for conveying the concept of absolute positioning

I would have to fine tune the location by pixels, to match
Aug 24 '08 #6
Although it shows up "below", it is still part of your navbar DIV.
The solution is very simple. You need to do your floats first (both left and right) followed by your "middle bits".
If you move <span style="float: right">... from the end of the navbar DIV to the beginning of the DIV, then everything fits on one line the way you want.
Think of it this way: You can't introduce FLOAT content which causes previously-rendered content to be pushed out of the way.
Jan 1 '14 #7
Hi,

Try to this html and css code
Expand|Select|Wrap|Line Numbers
  1. <style="text/css">
  2.  
  3.  #navlist li{
  4. display: inline;
  5. list-style-type: none;
  6. padding-right: 20px;
  7. }
  8. .c1 {float:right;}
  9.  
  10. </style>
  11. </head>
  12. <body>
  13.  
  14. <div id="navcontainer">
  15. <ul id="navlist">
  16. <li><a href="undelete.php">undelete</a></li>
  17. <li><a href="print_reg.php">print</a></li>
  18. <li><a href="rep_sum.php">summary</a></li>
  19. <li class="c1"><a href="index.php">reg page</a></li>
  20. </ul>
  21. </div>
  22. </body>
  23. </html>
  24.  
Jan 30 '14 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

1
by: JKenyon | last post by:
I am attempting to display two images on a web page. The second "image" is actually two images, one overlaid on the other. The first one is aligned on the left using float:left. I have enclosed...
9
by: leegold | last post by:
Why does float:right cause a line break? Try the code below. Is there a fix? I want the link on the same line as the text. Thanks <html> <head> <STYLE> span.linkpos { float:right; clear:...
3
by: Michael Shell | last post by:
Greetings, I've been playing with CSS inline floats of <span> elements and the results are not quite what I would expect. In the example attached at the end of this post, I would expect the...
5
by: Oliver Block | last post by:
Hello everybody, I wonder why a <span style="float:right">some text</span> might be displayed out of a surrounding div element. It is shifted to the next line. I thougt it is supposed to...
22
by: ashkaan57 | last post by:
Hi, I am trying to put text on left and right side of the page and used: <div> <span>blah blah</span> <span style="float:right">blah blah</span> </div> The 2nd text does go to the right but the...
1
by: bogdan | last post by:
Hi, I have a div to provide a background image for a menu. I'd like to position the menu on the right side but I can't seem to find a right way of doing it. The only way the menu will move to...
2
by: paragpdoke | last post by:
Hello All. I have a weird observation regarding the CSS float style for span. Allow me to share details before asking my question: Screen resolution: 1024x768 (I know my monitor is outdated; it...
2
by: luftikus143 | last post by:
Hi there, I am building a small WebApp, and using a list to display country values for a specific variable. It should be like Country A 10 Country B 4 Country...
1
by: Chinsu | last post by:
<html> <head> <style> #ex { width: 700px; background: red; float: left; } a, span { display: block;
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...

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.