Tagged Questions
The padding tag has no wiki summary.
97
votes
7answers
18k views
When to use margin vs padding in CSS
When writing CSS, is there a particular rule or guideline that should be used in deciding when to use margin and when to use padding?
45
votes
16answers
70k views
How can I pad a String in Java?
Is there some easy way to pad Strings in Java?
Seems like something that should be in some StringUtil-like API, but I can't find anything that does this.
36
votes
4answers
8k views
Difference between a View's Padding and Margin
What is the difference between a View's Margin and Padding?
16
votes
4answers
5k views
WPF: Grid with column/row margin/padding?
Is it easily possible to specify a margin and/or padding for rows or columns in a WPF Grid?
I could of course add extra columns to space things out, but this seems like a job for padding/margins (it ...
15
votes
5answers
4k views
Android - Spacing between CheckBox and text
Is there an easy way to add padding between the checkbox in a CheckBox control, and the associated text?
I cannot just add leading spaces, because my label is multi-line.
As-is, the text is way too ...
12
votes
6answers
195 views
Can wrapping a type in a struct cause additional padding? [closed]
Possible Duplicate:
Size of struct with a single element
Given any type A and the following struct:
struct S
{
A a;
};
Are there any cases where sizeof(S) is greater than sizeof(A)?
...
12
votes
3answers
29k views
Pad left or right with string.format (not padleft or padright) with arbitrary string
Can I use String.Format() to pad a certain string with arbitrary characters?
Console.WriteLine("->{0,18}<-", "hello");
Console.WriteLine("->{0,-18}<-", "hello");
returns
-> ...
11
votes
6answers
4k views
Why does the HTML5 DOCTYPE mess with my padding?
I have an html5 page with a navbar. Completely scratch coded. I just recently added a doctype to the item, and now I’m getting extra space under my navbar. If I remove the doctype declaration, it goes ...
11
votes
5answers
5k views
Padding within inputs breaks width 100%
Ok, so we know that setting padding to an object causes its width to change even if it is set explicitly. While one can argue the logic behind this, it causes some problems with some elements.
For ...
10
votes
3answers
3k views
Pad a number with starting zero in .Net
I have a requirement to pad all single digits numbers with a starting zero.
Can some one please suggest the best method? (ex 1 -> 01, 2 -> 02, etc)
10
votes
12answers
3k views
How to remember in CSS that margin is outside the border, and padding inside
I don't edit CSS very often, and almost every time I need to go and google the CSS box model to check whether padding is inside the border and margin outside, or vice versa. (Just checked again and ...
9
votes
4answers
6k views
Padding on StackPanel?
I am trying to set padding of a StackPanel but there ain't such property.
I tried StackPanel.Border, but there is no such property either.
Any ideas?
9
votes
3answers
6k views
Preventing padding propety from changing width or height in CSS
So, I am creating a site with DIVs. Everything's working out except when I create a DIV, in my CSS file I create them like this (example):
newdiv {
width: 200px;
height: 60px;
padding-left: 20px;
...
8
votes
3answers
146 views
std::array alignment
Trying out std::tr1::array on a mac i'm getting 16 byte alignment.
sizeof(int) = 4;
sizeof( std::tr1::array< int,3 > ) = 16;
sizeof( std::tr1::array< int,4 > ) = 16;
sizeof( ...
8
votes
2answers
3k views
-webkit-margin adds unwanted margin on texts
This haven't hit me until now (and this is not only in webkit browsers). On all texts in like p tags, h1 tags etc...there's an extra space over and below the text, in chrome I found this:
user ...
8
votes
10answers
355 views
A way to find the size and location of padding in a struct?
I'm trying to write a tool that will take as input some C code containing structs. It will compile the code, then find and output the size and offset of any padding the compiler decides to add to ...
8
votes
6answers
19k views
padding a text input in IE… possible?
I have a text input with a search buton absolute positioned over it... to make space for the button I used some padding to keep the text from going under the button, which is fine, it works in ...
7
votes
5answers
4k views
Android: TextView: Remove spacing and padding on top and bottom
When I have a TextView with a \n in the text,, on the right I have two singleLine TextViews, one below the other with no spacing in between. I have set the following for all three TextViews.
...
7
votes
11answers
1k views
Pad a C++ structure to a power of two
I'm working on some C++ code for an embedded system. The I/O interface the code uses requires that the size of each message (in bytes) is a power of two. Right now, the code does something like this ...
6
votes
7answers
241 views
How can I have a div at 73px and an iframe at 100% on the same page?
This should be easy, but I've spent a while trying to figure this out... I have a div that is 73px in height. I also have an Iframe that is suppose to stretch to the rest of the page but it overflows ...
6
votes
2answers
336 views
Padding bug in iframe in Facebook app
First post from a lurker, so please bear with me.
In my company's Facebook app, there's a form that can have error messages, which are getting double left padding. They have a fair bit of padding ...
6
votes
5answers
3k views
Why does CSS not support negative padding?
I have seen this many a times that the prospect of a negative padding might help the development of CSS of certain page elements become better and easier. Yet, there is no provision for a negative ...
6
votes
6answers
3k views
Left padding a String with Zeros
I've seen similar questions here and here.
But am not getting how to left pad a String with Zero.
input: "129018"
output: "0000129018"
The total output length should be TEN.
6
votes
7answers
3k views
CSS: Chrome and Safari seem to 'add' border to width, while IE, Firefox & Opera don't
Hey guys, I'm trying to achieve cross-browser consistency for my website, but I have been trying all day now and its driving me nuts (0.38 am here in Europe now..). It's about this page: ...
6
votes
4answers
3k views
Firefox/Safari setting height as [specified height - padding - border] for input[type=button]
When I use the following CSS:
input[type=button] {
background-color: white;
border: 1px solid black;
font-size: 15px;
height: 20px;
padding: 7px;
}
with this HTML:
<input ...
6
votes
8answers
9k views
How do you specify table padding in CSS? ( table, not cell padding )
I have a table with a colored background and I need to specify the padding between the table and it's content, I.E. cells.
The table tag doesn't seem to accept a padding value.
Firebug shows the table ...
6
votes
3answers
2k views
WPF TextBlock Padding is cutting off text
I have a TextBlock in a Grid with its Padding attribute set to 5. Sometimes the last character is cut off, depending on what string the Text property is set to.
<UserControl
...
6
votes
6answers
825 views
Can C arrays contain padding in between elements?
I heard a rumor that, in C, arrays that are contained inside structs may have padding added in between elements of the array. Now obviously, the amount of padding could not vary between any pair of ...
6
votes
8answers
6k views
Padding stl strings in C++
I'm using std::string and need to left pad them to a given width. What is the recommended way to do this in C++?
Sample input:
123
pad to 10 characters.
Sample output:
123
(7 spaces, ...
5
votes
3answers
188 views
Jumping in jQuery width animation
I'm having trouble working out why my animation is jumping. Any ideas?
http://jsfiddle.net/9F5DK/5/
jQuery(document).ready(function() {
// Animate the single page nav
...
5
votes
2answers
756 views
WPF: How to make RichTextBox look like TextBlock?
How can I make RichTextBox with no Margin, Border, Padding etc. ? In another words to display content in the same way as TextBlock does it ? I have tried this:
<RichTextBox Margin="0" Padding="0" ...
5
votes
3answers
156 views
Are there any CSS padding heuristics that I can follow?
I have a simple problem:
I have an image inside of a div.
In order to make the page more aesthetically pleasing, I'm going to add some additional padding to the image.
Rather than eyeball it, I'd ...
5
votes
5answers
639 views
what's the difference between padding and margin?
In W3 CSS and also in XUL/CSS? (not between CSS and XUL/CSS).
5
votes
5answers
353 views
Can the struct padding be safely used by the user code?
Assuming I have a struct like the following:
struct Struct {
char Char;
int Int;
};
and sizeof( int ) is greater than one and the compiler adds padding for the Char member variable - is the ...
5
votes
1answer
935 views
Window.Margin & Window.Padding don't work
I am setting peroperty Margin and Padding of a window and it doesn't take effect:
Here is an example:
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
5
votes
4answers
7k views
What would you use to zero pad a number in Flex/AS3?
Duplicate of this one.
What would you use to pad zeroes to the left of a number in Flex/AS3?
Is there an equivalent to printf or NumberFormat that does this?
I'm looking for the nicest ...
5
votes
6answers
12k views
String Padding in C
I wrote this function that's supposed to do StringPadRight("Hello", 10, "0") -> "Hello00000".
char *StringPadRight(char *string, int padded_len, char *pad) {
int len = (int) strlen(string);
...
4
votes
1answer
73 views
Why is <li> padding being interpreted different on Mac?
I have a wrapper, then ul, then li with padding and left float.
In Mac Firefox and Safari, the last <li> child moves to the next line.
I’m using margin auto and a reset. It renders fine on PC ...
4
votes
3answers
92 views
Pad list in Python
How can I pad a list when printed in python?
For example, I have the following list:
mylist = ['foo', 'bar']
I want to print this padded to four indices, with commas. I know I can do the following ...
4
votes
1answer
232 views
Trying to understand margins in LinearLayout inside a ScrollView
I need to have a LinearLayout inside a SrollView and that LinearLayout must have a margin from the ScrollView. At first, the only way I could think of to solve that issue was having a LinearLayout ...
4
votes
3answers
435 views
Remove 3 pixels in iOS/WebKit textarea
I'm trying to create a textarea that looks exactly like a div.
However, on iOS there's 3 pixels coming from somewhere that I can't remove.
Here's my code:
<!doctype html>
...
4
votes
4answers
108 views
The confusion about * {margin:0; padding:0;}
In some articles that I've read, the use of * {margin:0; padding:0;} is discouraged as it would affect the web site's performance. So I turned to a reset.css stylesheet.
But I'm wondering, how does ...
4
votes
4answers
188 views
HTML / CSS formatting: TRUE spacing between cell <-> cell, not between cell <-> any
I'm looking for hints regarding the spacing between table cells. I'm aware of
cellspacing / cellpadding in HTML and their CSS equivalents border-spacing / padding, but they're doing more that what I ...
4
votes
2answers
1k views
Android: setBackgroundResource discards my XML layout attributes
I have a view which is used as an item in a ListView. In my custom adapter, I change the background of the view using View.setBackgroundResource() depending on the item's position in the list. (I have ...
4
votes
2answers
2k views
C# Textbox Padding
I've searched through the internet, I must not be using the right keywords because I can't find anything. I'm wanting to create a textbox that has text starting a further in than the far left.
Just ...
4
votes
2answers
3k views
HTML5 Table cell padding - different in browsers
I've broken this down to a farily simple exmaple.
For me, it looks different in Chrome 7.0 than it does in Firefox 3.6.12. IE 9 beta looks like Chrome.
I'd like to be able to set padding on the TD, ...
4
votes
7answers
261 views
Is there any way to compute the width of an integer type at compile-time?
The size of an integer type (or any type) in units of char/bytes is easily computed as sizeof(type). A common idiom is to multiply by CHAR_BIT to find the number of bits occupied by the type, but on ...
4
votes
7answers
581 views
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)
)
I need the identity column to be incremented as ...
4
votes
3answers
264 views
Indexing into arrays of arbitrary rank in C#
I need to iterate over an array of arbitrary rank. This is for both reading and writing, so GetEnumerator will not work.
Array.SetValue(object, int) doesn't work on multidimensional arrays.
...
4
votes
2answers
2k views
Jquery Accordion widget - remove the icon and padding
I'm new to jquery and i'm trying to find out if it's possible to create simple accordion without the arrow icon and without padding at all inside the accordion content.
I want to use the whole ...