How do I center this in html?

7 replies
  • WEB DESIGN
  • |
<div class="center" >
<a class="small-buy-button" href="#"> </a>

<div class="divider-button"></div>

<a class="small-trial-button" href="#"> </a>

</div>
#center #html
  • Profile picture of the author CyberAlien
    Are you just wanting to use html instead of css for some reason to center?

    Code:
             <center><div> 
             <a class="small-buy-button" href="#"> </a> 
             <div class="divider-button"></div>
             <a class="small-trial-button" href="#"> </a> 
             </div></center>
    {{ DiscussionBoard.errors[7785197].message }}
    • Profile picture of the author mandos123
      Originally Posted by Chase Watts View Post

      Are you just wanting to use html instead of css for some reason to center?

      Code:
               <center><div> 
               <a class="small-buy-button" href="#"> </a> 
               <div class="divider-button"></div>
               <a class="small-trial-button" href="#"> </a> 
               </div></center>
      Thanks, but I already tried this and no help..
      Signature

      None

      {{ DiscussionBoard.errors[7785258].message }}
      • Profile picture of the author butters
        Don't you just wrap it in <center> </center>?

        http://www.w3schools.com/tags/tag_center.asp
        {{ DiscussionBoard.errors[7785279].message }}
      • Profile picture of the author CyberAlien
        Originally Posted by mandos123 View Post

        Thanks, but I already tried this and no help..
        Then let's get messy and see if this works:

        Code:
                 <center><div> 
                 <center><a class="small-buy-button" href="#"> </a> </center>
                 <center><div class="divider-button"></div></center>
                 <center><a class="small-trial-button" href="#"> </a></center>
                 </div></center>
        {{ DiscussionBoard.errors[7785880].message }}
  • Profile picture of the author imsolutionsgroup
    <div style="text-align:center">

    <a class="small-buy-button" href="#"> </a>

    <div class="divider-button"></div>

    <a class="small-trial-button" href="#"> </a>

    </div>
    {{ DiscussionBoard.errors[7785284].message }}
  • Profile picture of the author mafai44
    you have to use css to center.
    {{ DiscussionBoard.errors[7785450].message }}
  • Profile picture of the author mariya20
    you can use <div style="text-align:center"> or <div align="center"> it's the same.. but as mafai said you can use the css to center a Div Class ...
    {{ DiscussionBoard.errors[7785818].message }}

Trending Topics