The property which determines the size of an object in X-axis

learn more… | top users | synonyms

291
votes
15answers
210k views

Make CSS Div Width Equal To Contents

I have a layout similar to: <div> <table> </table> </div> I would like for the div to only expand to as wide as my table becomes.
102
votes
6answers
83k views

Percentage width in a RelativeLayout

I am working on a form layout for a Login Activity in my Android App. The image below is how I want it to look like: I was able to achieve this layout with the following XML. The problem is, it's a ...
65
votes
7answers
29k views

width: 100%-padding?

I have an html input. The input has padding: 5px 10px; I want it to be 100% of the parent div's width(which is fluid). However using width: 100%; causes the input to be 100% + 20px how can I get ...
65
votes
8answers
55k views

Div width 100% minus fixed amount of pixels

How can I achieve the following structure without using tables or JavaScript? The white borders represent edges of divs and aren't relevant to the question. The size of the area in the middle is ...
60
votes
5answers
25k views

android get height width of ImageView

╔══════════════════════════════════════════════╗ ^ ║ ImageView ╔══════════════╗ ║ | ║ ║ ║ ║ | ║ ║ Actual image ║ ...
54
votes
8answers
18k views

How to get console window width in python

Is there a way in python to programmatically determine the width of the console? I mean the number of characters that fits in one line without wrapping, not the pixel width of the window. Edit ...
48
votes
2answers
56k views

iPad browser WIDTH & HEIGHT standard

Does anyone know the safest width and height for the BODY when viewing any web page on the iPad? I want to avoid the scrollbars as much as possible. Thanks. Erik
46
votes
3answers
26k views

Does setWidth(int pixels) use dip or px?

Does setWidth(int pixels) use device independent pixel or physical pixel as unit? For example, does setWidth(100) set the a view's width to 100 dips or 100 pxs? Thanks.
45
votes
9answers
49k views

How to make a div to fill a remaining horizontal space (a very simple but annoying problem for CSS experts)

I have 2 divs: one in the left side and one in the right side of my page. The one in the left side has fixed width and I want the one of the right side to fill the remaining space. The one on the ...
44
votes
3answers
10k views

Canvas is stretched when using CSS but normal with “width” / “height” properties

I have 2 canvas, one use old HTML width and height to size it, the other use CSS <canvas id="compteur1" width="300" height="300" onmousedown="compteurClick(this.id);"></canvas> <canvas ...
39
votes
5answers
78k views

IE 8: background-size fix

I've tried to add background size to IE but it's not working at all: HTML <h2 id="news">Notícias <img src="white-marker.png" alt="" /></h2> CSS: div#content h2#news { ...
36
votes
4answers
22k views

How to set the width of a cell in a UITableView in grouped style

I have been working on this for about 2 days, so i thought i share my learnings with you. The question is: Is it possible to make the width of a cell in a grouped UITableView smaller? The answer is: ...
33
votes
6answers
53k views

Expand div to max width when float:left is set

I have something like that: <div style="width:100px;float:left">menu</div> <div style="float:left">content</div> both floats are neccesary. I want the content div to fill ...
33
votes
4answers
11k views

CSS \9 in width property

What is the meaning of this? I am guessing it is a browser hack, but I have not been able to find what exactly it does. width: 500px\9; What is the significance of \9?
32
votes
11answers
37k views

HTML input textbox with a width of 100% overflows table cells

Does anyone know why the input elements with a width of 100% go over the table's cells border. In the simple example below input box go over the table's cells border, the result is horrible. This was ...
31
votes
6answers
30k views

Android get width returns 0

I creating all of the elements in my android project dynamically. I am trying to get the width and height of the button so that I can rotate the button around. Just trying to learn how to work with ...
30
votes
5answers
33k views

jQuery - Get Width of Element when Not Visible (Display: None)

It seems like in jQuery when an element is not visible width() returns 0. Makes sense, but I need to get the width of a table in order to set the width of the parent before I show the parent. As ...
29
votes
6answers
15k views

Getting terminal width in C?

I've been looking for a way to get the terminal width from within my C program. What I keep coming up with is something along the lines of: #include <sys/ioctl.h> #include <stdio.h> int ...
27
votes
5answers
33k views

How to set the initial zoom/width for a webview

I am trying to get the WebView to have similar behavior as the android browser. The browser opens all pages in a way that tries to fit their width to the screen. However, the default behavior of the ...
27
votes
4answers
103k views

jquery $(window).width() and $(window).height() return different values when viewport has not been resized

I am writing a site using jquery that repeatedly repeatedly calls $(window).width() and $(window).height() to position and size elements based on the viewport size... In troubleshooting I discovered ...
26
votes
6answers
26k views

Android dialog width

I can't seem to control the dialog width. I have a simple layout like so` <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
24
votes
4answers
30k views

Override and reset CSS style: auto or none don't work

I would like to override following CSS styling defined for all tables: table { font-size: 12px; width: 100%; min-width: 400px; display:inline-table; } I have ...
21
votes
1answer
9k views

How can I make a column in a listbox in WPF the same width for all items?

I have a ListBox with an ItemTemplate consisting of a TextBlock and a ComboBox. The problem is that the width of the text inside the TextBlock is not the same for each item and the ComboBox controls ...
21
votes
4answers
15k views

dynamic calculation of UILabel width in UITableViewCell

I am building a custom, in-application settings view based on UITableViewCellStyle1 (or so). I'm trying to dynamically calculate the width of the left label (title) of a cell in order to determine how ...
18
votes
5answers
33k views

Does height and width not apply to span?

Total noob question, but here. CSS .product__specfield_8_arrow { /*background-image:url(../../upload/orng_bg_arrow.png); background-repeat:no-repeat;*/ background-color:#fc0; ...
17
votes
3answers
12k views

Listen to browser width / height changes with jQuery

I have some divs that are set with position absolute (CSS) when the page is ready, and are positioned relative to another fixed div, wich works fine. However, before the page is loaded and everything ...
17
votes
5answers
21k views

Android TableLayout Width

I have a two column TableLayout as the only child of a scroll view. The first column contains TextViews ('labels') and the second column contains EditText/Spinner/DateWidget etc ('values'). Even ...
17
votes
1answer
22k views

How to set width to 100% in WPF

Is there any way how to tell component in WPF to take 100% of available space? Like width: 100%; in CSS I've got this XAML, and I don't know how to force Grid to take 100% width. ...
16
votes
2answers
14k views

XML Table layout? Two EQUAL-width rows filled with equally width buttons?

Hi heres a part from my XML for LAND format: <TableLayout android:layout_height="wrap_content" android:layout_width="wrap_content" android:layout_gravity="center" ...
16
votes
2answers
23k views

C# ListView Column Width Auto

How can I set the column width of a c# winforms listview control to auto. Something like width = -1 / -2 ?
16
votes
3answers
720 views

Tricky CSS Layout

So I am making a website with quite a problematic layout. There are four corner images TL, TR, BL and BR indicated by black blocks. The dark orange area is the main content (to a width of 960px), ...
15
votes
10answers
21k views

Is it possible to set the width of a jquery autocomplete combobox

i am using this jquery ui combobox autocomplete control out of the box off the jquery ui website: my issue is that i have multiple comboboxes on a page and i want them to have different widths for ...
15
votes
2answers
13k views

How to get the size of a NSString

A "quicky": how can I get the size (width) of a NSString? I'm trying to see if the string width of a string to see if it is bigger than a given width of screen, case in which I have to "crop" it and ...
14
votes
2answers
24k views

Android set height and width of Custom view programmatically

I have created a custom view named Graphview . Here is the structure for the GraphView class. public class GraphView extends View { public GraphView(Context context, float[] values, String ...
14
votes
4answers
12k views

IE8 ignores td width, works on IE7

Greetings, I've been trying to make a site work for half a day to no avail. IE8 is bad for my mental state. So, there is a table looking like this: <table width="100%"> <tr ...
14
votes
2answers
26k views

CSS: 100% width or height while keeping aspect ratio?

Currently, with STYLE, i can use "width: 100%" and "auto" on the height (or vice versa)... but i still can't constrain the image into a specific position, either being too wide or too tall, ...
14
votes
6answers
21k views

Increase columns width in Silverlight DataGrid to fill whole DG width

I have a DataGrid Control which is bound to a SQL Table. The XAML Code is: <data:DataGrid x:Name="dg_sql_data" Grid.Row="1" Visibility="Collapsed" ...
13
votes
2answers
9k views

CSS - percentage height

How come percentage height doesn't work but percentage width does? Example
13
votes
13answers
604 views

Allow images in a <div> to be wider than lines of text in the same <div>

I want to fit text in a <div> to the width of the <div>, but fit images in the same <div> to the width of the parent <div> This diagram should make things clear: (here's ...
12
votes
6answers
17k views

iPad background for div blocks not spanning entire width of screen

I've had a continued problem with div blocks stretching along the entire width of my iPad's screen. It seems to stop about 20 pixels from the right side of the screen. Screenshots: For the menu, ...
12
votes
4answers
22k views

Make narrow characters with CSS

How do I reduce characters' width of Arial-like fonts with CSS?
12
votes
3answers
62k views

CSS Layout - Dynamic width DIV

I have a pretty common layout issue that I have traditionally used a table to solve, but would like some advice on getting it done with CSS. I have 3 images that makeup a 'container'. The left and ...
12
votes
2answers
11k views

Measuring the pixel width of a string in Cocoa

I need to measure the pixel width of a string in Cocoa. Can anyone point me to a link that explains how to do this? I haven't found anything that explains this well.
12
votes
1answer
12k views

How to PHPExcel set auto-columns width

I'm working with PHPExcel to export data for download. When open downloaded files, with cells have big number, it show "#######" instead of value number. I'm tried setAutoSize() for every columns then ...
11
votes
4answers
5k views

Setting a maximum width on a ViewGroup

How do I set the maximum width of a ViewGroup? I am using a Theme.Dialog activity, however, this does not look so good when resized to bigger screens, it's also sort of lightweight and I don't want it ...
11
votes
7answers
27k views

detect window width and compensate for scrollbars - Javascript

How do I detect the width of a user's window with Javascript and account for their scrollbar? (I need the width of the screen INSIDE of the scrollbar). Here's what I have...it seems to work in ...
10
votes
3answers
18k views

jquery - how to get screen width without scrollbar?

I have an element and need it's width without(!) vertical scrollbar. Firebug tells me body width is 1280px. Either of these work fine in Firefox: console.log($('.element').outerWidth() ); ...
10
votes
4answers
200 views

CSS positioning to fill container: width vs. left/right?

Considering: For elements that are absolutely positioned inside a relatively positioned container. If you want the element to fill the width of the container. The element is also bottom-aligned. ...
9
votes
2answers
7k views

( Autoresizing mask ) flexible width of an image with fixed height

I have been playing around with iPhone interface building using only code and not using IB. Now I'm facing the following problem: How can I set an image to have a width based on the main view it is ...
9
votes
6answers
2k views

100% DIV width is not really 100%

When I have a <div> with width: 100%, it is not really 100%: <div id="div">testtesttesttesttest</div> ... #div { width: 100%; background-color: red; } Now when you resize ...

1 2 3 4 5 48