Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
2710
webimagebutton texdst align right
posted

can I align the text in webimagebutton to the right with css?

Parents
  • 10240
    posted

    Hi garyrg9,

    Sure, you can do that. The best place to get info on setting css properties is through W3Schools.com.

    For this objective, you can set the Padding-Left property on the element holding the image button, such as a div. For example this pushes the control to the left 200 pixels:

     

    div.container

    {padding-left: 200px;}   

    ....

    <div class="container">

    <igtxt:WebImageButton ID="WebImageButton1" runat="server"> 

    </igtxt:WebImageButton>

    </div>

             

    For more on W3Schools you can check-out their    

    http://www.w3schools.com/ 

    http://www.w3schools.com/css/css_padding.asp

     

Reply Children
No Data