Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 750151
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T14:31:06+00:00 2026-05-14T14:31:06+00:00

I use HTML to put text into a JButton. In this way I can

  • 0

I use HTML to put text into a JButton. In this way I can play with colors and text size. What I do not like is the distance from the left border of the button and the text (this separation is too large). Is there a way to decrease this distance? I think it should be some parameter in the style of the HTML code.

Sample of the code:

JButton btn = new JButton("<html><span style='color:#000000; font-size: 11pt;'>" + label + "</span></html>");
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-14T14:31:06+00:00Added an answer on May 14, 2026 at 2:31 pm

    I would recommend doing this programmatically rather than attempting to do it with HTML as you’ll be more likely to see consistent results across platforms.

    JButton btn = ...
    btn.setHorizontalTextPosition(SwingConstants.LEFT);
    

    Then you can customise the font size by either overriding paintComponent (more work) or modifying the FontUIResource object at start-up (although this will affect the font size of all buttons); e.g.

    FontUIResource f = new FontUIResource("Tahoma", Font.PLAIN, 11);
    Enumeration<Object> it = UIManager.getDefaults().keys();
    
    while (it.hasMoreElements()) {
        Object key = it.nextElement();
        if (UIManager.get(key) instanceof FontUIResource) {
            UIManager.put(key, f);
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

It seems impossible to define PUT when I use Html.BeginForm to submit a form
I would like to use HTML 4.01 Strict, and used a DOCTYPE of it
Can I use Html Agility Pack to make the output look nicely indented, unnecessary
I am developing an iPhone application and I use HTML to display formatted text.
Can someone provide a simple example of how to properly use Html.RadioButtonFor? Let's say
I am trying to use .push to put items into a javascript array. I
When trying to use the code presented here link text I ran into some
Trying to use JSPX and running into a strange problem. Text inside jsp:text is
Can I set up HTML/Email Templates in C# on ASP.NET? This question was asked
How can escape html tags into a xaml code? For example, if i want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.