padding

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 firefox, but not IE. In fact... It doesn't seem like padding on text inputs works at all in IE. They have the following code <style type="text...

margin and padding are causing issues calculating layout

I am having this issue where I am not getting the true offset in IE6. I am using the offset to position a pop-in. The CSS is something like this: .container50-50-right-border { } .container50-50-right-border .title {padding: 0px; margin: 0px; clear: both;} .container50-50-ri...

How can I make html padding that looks the same in different browsers?

I have a blog, www.realcanadianenglish.blogspot.com. I use Firefox to write it. Sometimes I check the blog using Internet Explorer. With the later it shows a gap between the picture and the text sometimes. Can I change the HTML code to fix this? Why is there a difference between the two: Explorer and Firefox? ...

What's the best candidate padding char for url-safe and filename-safe base64?

The padding char for the official base64 is '=', which might need to be percent-encoded when used in a URL. I'm trying to find the best padding char so that my encoded string can be both url safe (I'll be using the encoded string as parameter value, such as id=encodedString) AND filename safe (I'll be using the encoded string directly as...

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 implementation of this or something similar: public function zeroPad(number:int, width:int):String { // number = 46, width = 4 would return "0046"...

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, prior to 123) ...

CSS Padding - Apparently I missed something

Lets say I have some markup like this: <html> <head> <style type="text/css"> #container { margin: 0 auto; width: 900px; background: green; } </style> </head> <body> <div id="container"> </div> </body> </html> Imagine "container" is filled with hundreds of a's for testing purposes of padding...

String padding problem

Hi, Using the code given below the padding doesn't seem to be playing as it should, in theory the text "ADD this text" should start from column 21 in both the strings but in str2 it has a few extra spaces. On checking the length of both the strings the length turned out to be the same 20 as expected. string str1 = "Test"...

How to str_pad this PHP date selection month array ???

Needs to be padded to this: str_pad($Month, 2, "0", STR_PAD_LEFT) but how/where??? /*******creates the month selection dropdown array****/ function createMonths($id='month_select', $selected=null) { /*** array of months ***/ $months = array( 1=>'Jan', 2=>'Feb', 3=>'M...

Preventing padding propety from changing width or height in CSS?

So, I am creating a site with DIV's. Everythings 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; text-align: left; } NOW, when I add the padding-left property, the width of the DIV changes to 220px, and I want it to remain at 200px; Let'...

How to adjust padding in xaml label

How can I make the top and bottom padding smaller in the following label? As I see it, the bounding box in much bigger than it needs to be, but the padding is set to 0, so it cannot be any smaller. <Label Background="AliceBlue" Content="1800" FontSize="170" FontWeight="Bold" Foreground="Gray" Padding="0" /> ...

what are common AES encryption paddings in both c#.NET and java

Hi, I want to know which padding modes for AES encryption are common in both java and C#.NET Thanks Bapi ...

Replicating C struct padding in Java

Hi, According to here, the C compiler will pad out values when writing a structure to a binary file. As the example in the link says, when writing a struct like this: struct { char c; int i; } a; to a binary file, the compiler will usually leave an unnamed, unused hole between the char and int fields, to ensure that the int field i...

want to add padding to a td with jquery

I need to find td within a div and add a class to all the td's within that div, how can I do that with jquery? ...

How to apply padding to a column using <col> and CSS in Firefox?

Example: <style type="text/css"> table { border: 1px solid red; border-collapse: collapse; text-align: left; } #col-1 { padding-left: 20px; background-color: tan; } #specific-cell { padding-left: 20px; } </style> <table> <col id="col-1"> <col id="col-2"> ...

Encrypt/Decrypt ECB/PKS5/Blowfish between AS3Crypto & Javax.Crypto fails with padding error

I have a secret key that was sent to me as a file so I can encrypt some xml data using Blowfish. How do I access the key so that I can use it with AS3Crypto? I assume I need to Embed it using the [Embed] meta tag. It's mimeType="application/octet-stream" but I'm not sure if thats right. How do I embed, then reference this file as the sec...

Problem with HTML DIV style-padding

<asp:UpdatePanel runat="server"> <ContentTemplate> <div style="padding: 0px 45px 0px 45px"> <asp:FormView ID="fvAccounts" runat="server" DataKeyNames="AccountId" DataSourceID="edsAccounts" EnableModelValidation="True" Width="100%"> <EditItemTemplate> <%-- continuing --%> I want the FormView to be 45px (hippos :P) away from th...

Can the padding/margin on radio buttons in IE6/IE7 be reduced to 0-1px?

In Firefox and IE8 this isn't a problem, but in IE6, and IE7 I can't seem to reduce the padding/margin on radio buttons to anything reasonable (e.g. 0px or 1px). In the included images, you can see that the red background is huge on IE6/IE7 (even with CSS padding and margin both set to 0px) yet in Firefox/IE8 it is fine. The reason of ...

To pad or not to pad - creating a communication protocol

Hi all, I am creating a protocol to have two applications talk over a TCP/IP stream and am figuring out how to design a header for my messages. Using the TCP header as an initial guide, I am wondering if I will need padding. I understand that when we're dealing with a cache, we want to make sure that data being stored fits in a row of...

How can I left-pad the string representation of a float?

Hello. I'm trying to convert a single precision floating point number into an ascii representation of the four bytes that make it (sign/exponent/mantissa). My current code is: Integer.toString(Float.floatToRawIntBits(f),16); Float.floatToRawIntBits makes an integer using the same bytes, and then Integer.toString creates the ascii dig...