0
votes
2answers
20 views

Creating a 2 Column Layout in CSS

I am working on the interface for a small web module and am having some problems with the CSS. Right now I have the container DIV and then tables to layout the sub-sections. I am floating 3 of the ...
0
votes
1answer
40 views

How to mimic table with a colspan=2 layout with CSS div layout

I have a table layout - 3 cells. Left and right take up 100px, middle is auto sized. I would like to create a "row" that is split into 2 50% "cells", and put one of the existing 3 cell row in each ...
0
votes
3answers
33 views

Table with white-space: nowrap and one column needs overflow: hidden

Here is my layout: http://jsfiddle.net/salman/vjfjd/ I want the table to fit inside the fixed width div. All cells have nowrap so I want one of the columns (marked with .class1) to shrink so that ...
-1
votes
0answers
22 views

Media Database Design [closed]

So I feel like I may be asking a basic question here, but from what I have read so far I haven't come up with an answer that makes sense so I guess its time to ask. I am trying to design a database to ...
0
votes
1answer
36 views

How to create a table with 100% width, with dynamic width for the 1st column, and wrapped text in the 2nd column?

I'm trying to format the debug log of an app as an HTML table. I have two columns: one for time stamps, and one for the text of log entries. The text can easily contain long character sequences. ...
0
votes
2answers
73 views

Table layout in android (span/shrink)?

I want this special table layout: In my current layout the cells that are shorter are at the same size like the cells with the long text: How do have to do it? It should look like the first ...
0
votes
2answers
66 views

Android Button Alignment using Table Layout

I was trying three buttons to keep aligned using Table Row, But the middle one remains in air, any idea what am i missing ? <TableLayout android:layout_width="fill_parent" ...
6
votes
5answers
419 views

CSS: 'table-layout: fixed' and border-box sizing of cells in Safari

I have a simple table, with a header and table body. All the cells are supposed to be fixed width, only one is variable (e.g. name). I need table-layout: fixed in order to use text-overflow: ...
0
votes
0answers
75 views

nested table-tag within div-tag within table-tag

I have the following nasty layout: <table style="width: 100%; word-wrap: break-word; table-layout: fixed"> <tbody> <tr> <td class="td1"> ...
0
votes
3answers
176 views

Layout with divs instead of table

I'm wondering what way would be best in replacing the table-layout to divs. I've been trying some myself but it messed up my 4x4 divs very much. I'm guessing this isn't very hard to accomplish when ...
2
votes
0answers
181 views

How to build a multiple columns ListView in android and user can scroll to see invisible columns?

I want to build a Table with many columns (20) and many rows (100), so some columns would be invisible due to the screen's width. I choose to use ListView for this, but how to make user see the ...
1
vote
1answer
43 views

CSS - Forcing one column in layout to take precedence

I have a section of a page layout which has the option of anywhere from 1 to 3 buttons in the right column, and the left column will have a title which may be a few words or even a paragraph. The ...
4
votes
0answers
103 views

Why does YouTube use a table to layout it's search box? [closed]

I was wondering how is the virtual keyboard link is displayed on the youtube search bar, and an element inspection of the input element gave me this: (I removed any classes and ids to make the code ...
2
votes
1answer
41 views

Android: How to make a detailed table with lots of entries?

I need to create tables that will hold lots of entries (its a bus schedule). I will need to be able to set the color of certain individual cells. And I would obviously want it to play nice with all ...
0
votes
0answers
48 views

Fitting multiple Columns into Table Layout

I am using a TableLayout in my application. The XML File prints me the first line of the "table" and looks like this: <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
1answer
56 views

CSS table reshape to 2-columns

I have a table in html, containing this strucured date: <table> <tr><td>label1</td><td>value1</td></tr> ...
0
votes
1answer
19 views

Which tags should be used for web page layout? [closed]

I am confused which tags should i use for the layout of my web page.I am building a video sharing website similar to youtube for my final year project. I would like to display the thumbnail view (like ...
0
votes
1answer
66 views

Can not adjust buttons in Tablet Layout in Android

I have tablet layout with displays buttons in 3 rows <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
4answers
191 views

How do you create a two-column layout without html tables?

I have been told several times that I shouldn't be using tables for layout design but I constantly find myself going back to them when I can't figure out how to do something. I need to create a two ...
0
votes
1answer
50 views

Scaling dynamic button

I am trying to add a large number of buttons in a row to a screen. The buttons are set in a TableLayout. I have searched multiple places like this: Calculate screen size in android trying to find a ...
4
votes
2answers
71 views

Is <table> semantic for displaying phone, email, and fax?

Is the following code semantic use of HTML tables? <table> <tbody> <tr> <th>Phone</th> <td>+1234567</td> </tr> ...
0
votes
2answers
245 views

HTML - Fill table cell with color

I'm building in HTML three asymmetric tables like this: <table id="d1"> <tr> <th colspan="2">ATIS-GESTEL</th> </tr> <tr> ...
-1
votes
2answers
97 views

Table styling when rows are inside columns

I'm wondering if it's possible to use CSS display:table type styles for nested divs where the rows are children of the columns. Here's an example jsfiddle: http://jsfiddle.net/UrWEn/1/ Or is there ...
0
votes
1answer
130 views

Table layout affected by font in use

Apparently, Google’s Dosis font screws up table layout: <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
0
votes
1answer
164 views

Make div (display: table) match outer container's height width min-height

I need container width min-height in order to hold variable size content, but at the same time I need content to be vertically aligned inside parent container. JS Fiddle: ...
0
votes
1answer
45 views

Table View Not Displaying SeekBar Correctly Android

Hey guys I am having troubles getting my SeekBar to fill in my tableview. This is it how it looks like My Code: <TableRow android:layout_width="fill_parent" ...
0
votes
0answers
112 views

Table Cell CSS Styles Not Working in Wordpress

I am reconstructing one of my websites using Wordpress as the CMS. All the work I have done has worked beautifully, except when I attempt to format a table with CSS. I placed a class in the theme's ...
-2
votes
1answer
69 views

How can i create a html website section, that drops down animated with jquery?

it sounds trivial, but its not that easy: the reason: i made a photoshop layout an exported it as html&images. photoshop creates a table of the whole site. thats where my problem is: i want to ...
0
votes
1answer
117 views

Visual Basic Two Panels Grow Fullscreen?

I just feel awkward when making these Layout as shown (Preview Link) I have 4-panels. Red Panel is the outer. I use a FlowLayout. Black Panel is the inner Panel i use normal panel. Then, I have ...
0
votes
2answers
215 views

Table Layout and CSS

I cannot figure out what is wrong with my .css as my <table> is not centered and stays left. I tried the margin-left and margin-right set to auto without success. Am I missing a <div> tag ...
0
votes
1answer
194 views

CSS table custom width

I've been recently working on a simple web page. I would like to place almost all style info in the css file. The main layout of the page is a table. I looks like this: <body> <table ...
0
votes
0answers
50 views

Show a single long table as two columns in printer output

I have a page that consists of a single very long table, but thin enough to fit two columns on a typical A4 page. Is there any way for the printer output to look like as follows using pure CSS? If ...
0
votes
1answer
171 views

Use CSS to autosize width content

I have a table with two columns. The second column should ALWAYS show it's content perfectly and the width should be automatically calculated based on the content. The first column should be as wide ...
2
votes
1answer
205 views

A table web page layout using the display property in css

So I've been using CSS table display property to get a table layout on my site. Now before you go into the using 'float' property or use the HTML table tag, I prefer the CSS table layout and find it ...
0
votes
3answers
307 views

div-css table with height: 100%, div-rows not resizing in ie7

I want to make layout that take 100% of the screen height (min) with header, body and footer ... the body and the footer will have hard-coded height and the body will be elastic to resize accordingly ...
0
votes
0answers
168 views

ExtJs List in panel, which is in table, which is in tabPanel, which is in Window

Hi i have a little problem:( I just want to add several lists to columnLayout to tabPanel in window, but when i resize window, all resize except list:( this is my configuration: elementInfoWindow = ...
0
votes
0answers
168 views

How to create a square 10x10 table in Android?

I am working on a simple battleship game. I need to draw a square 10x10 table with no border. I do the testing on 480x800 screen of Nexus S. So each cell should be 48x48 px in this table. First thing ...
2
votes
1answer
254 views

CSS Table is larger than specified

I'm writing some code to generate a "full screen" page with a header. I'm using a table to do layout, with CSS specifying the dimensions and formatting. The table has a height and width of 100% to ...
0
votes
1answer
83 views

Displaying some tabular data, but it has a dynamic layout. Div? Table?

I have a requirement to display some data to a user. The data is displayed as "Label: InputForLabel" and will have two columns. It looks like this: I started by just using a table with four ...
1
vote
2answers
209 views

Using an HTML table for layout in HTML5

I'm currently upgrading a MediaWiki installation from ancient 1.6.10 to 1.19.2. One of the changes is that the new MediaWiki uses <!DOCTYPE html>, which changes the layout a bit. Now one of the ...
1
vote
3answers
199 views

Are CSS Tables ok for layout, and are there any SEO problems with them? [closed]

I only recently discovered the display: inline-table; and display: table-cell; CSS properties, and now I'm wondering if they are any better than html tables. I know html tables are bad for SEO and ...
0
votes
1answer
109 views

How to make a table fixed width in FF and IE7/IE8

I'm using this free html template to create a page that displays some information about a web application. Please see this JsFiddle for reference: http://jsfiddle.net/wx3Gz/1/ The problem are the ...
0
votes
1answer
211 views

Complex table layout with fixed width and expanding columns

I have a complex table layout (jsfiddle). This is a long report with many sections and each section has a table in it. The first two columns of the tables should have a fixed width to make sure they ...
-1
votes
3answers
85 views

Android TableLayout Alignment

I have Layout XML Like this. This is inside LinearLayout. <TableLayout android:layout_width="fill_parent" android:layout_height="fill_parent"> <TableRow ...
1
vote
1answer
108 views

How to layout a form with 1 input field + submit button so that <form> and <fieldset> backgrounds do not shine through?

I am trying to make a very simple XHTML/CSS horizontal toolbar with several "tabs", 1 of them being a very simple search form. I have the following XHTML code: <?xml version="1.0" ...
6
votes
1answer
291 views

.NET Framework v4.5 Changing Layout Of Program

I have a program that I developed in C# and it is currently running on the Microsoft .NET Framework v4.0. I have upgraded to Visual Studio 2012 and that also installed Microsoft .NET Framework v4.5. ...
0
votes
1answer
98 views

Why do the views in my TableRow don't react to their weights?

I'm programming an Android app and I'm trying to show a table. My problem is, that the columns don't fill the screen, they just all stick to left. I already tried using padding, but first I don't ...
0
votes
0answers
342 views

Table height of 100% ignored by webkit when content overflows

I'm working on a CSS grid using table display properties. The aim is for the two grey columns to fill the available height. Here's the code: http://jsfiddle.net/2JP2h/4/ Page body contains 3 rows, ...
0
votes
3answers
311 views

Making a div fill a table cell in HTML5

I've got a div inside an HTML table cell, but I can't get it to fill the whole cell. <body style="background-color: ButtonFace;"> <form id="form1" runat="server"> ...
0
votes
3answers
136 views

Google chrome trouble with table that extends over 100%

Hi I have a table that is 100% and 2 cells one 60% and the other 40% Inside the 60% one there is an image that is over 60%. Most browsers say ok fine and just shrink the 40% one which is just text. ...

1 2 3 4