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

I want to use this pure HTML/CSS template for my ASP.NET website: http://sub3.tanguay.de I
When trying to use the code presented here link text I ran into some
Whenever I use Html.ActionLink it always Html encodes my display string. For instance I
I frequently use HTML output in applications, up to now I've used some simple
I have the whole MVC-Model set up and use HTML views as templates. But
In a web application, is it acceptable to use HTML in your code (non-scripted
I use struts-html to generate forms fields. For example: <%@ taglib prefix=html uri=/WEB-INF/taglibs/struts-html.tld %>
I need my .net application to use the .html extension instead of .aspx I'm
I'm auditing our existing web application, which makes heavy use of HTML frames .
It is advisable to use tables in HTML pages (now that we have CSS)?

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.