Top "Padding" questions

Extra space inserted into memory structures to achieve address alignment -or- extra space between the frame and the content of an HTML element -or- extra spaces or zeros when printing out values using formatting print commands like, in C, the printf*-family of functions.

Padding in 24-bits rgb bitmap

could somebody explain to me why in 24-bit rgb bitmap file I have to add a padding which size depends …

c padding bmp 24-bit
Unexplained Extra Space, Possibly Padding Surrounding a Table within a Table

This is an experiment I'm working on for a layout. I had a lot of issues positioning divs to achieve …

html html-table padding spacing
How can I add padding to a jtextfield

How can I add some padding to a jtextfield? I've tried tf.setMargin(new Insets(5,5,5,5)); which doesn't have any effect.

java swing user-interface padding jtextfield
Format a float in Python with a maximum number of decimal places and without extra zero padding

I need to do some decimal place formatting in python. Preferably, the floating point value should always show at least …

python string-formatting padding
How to add padding to a JPanel with a border

I want to add padding to some JPanels. I found this answer: https://stackoverflow.com/a/5328475/1590323 It worked fine for …

java swing jpanel border padding
Border-radius and padding not playing nice

I'm having trouble trying to get a radius on images. I've simplified my problem and exaggerated the variables for demonstration …

image padding css
Is it possible to pad integers with zeros using regular expressions?

I have a series of numbers of different lengths (varying from 1 to 6 digits) within some text. I want to equalize …

regex padding
How to remove the padding between in the JPanel still using a flow layout?

Here's the portion of my java application GUI that I have a question about. What this GUI consists is a …

java swing jpanel padding layout-manager
Padding a swift String for printing

I'm trying to print a list of Strings all padded to the same width. In C, I would use something …

swift string padding
SQL Identity with leading padded zeros

I have marked a column as Identity in my table create table Identitytest( number int identity(1,001) not null, value varchar(500) ) …

sql sql-server padding identity-column