Css div

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Css div

    Please to do this with css.
    I want to put 2 link in one line, one should be on right and other on left at the same line.
    Eg.
    Link1 Link2

    #2
    you should use the float function in your css.

    Comment


      #3
      With span or div property in css, this in markup.
      Code:
      <a class="left" href="./some1.php">Left Link</a> <a class="right" href="./some2.php">Right Link</a>
      <!DOCTYPE html PUBLIC "-//WAPFORUM.RS

      Comment

      Working...
      X