Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
2answers
232 views

How does the TED Talk home page organise the grid of videos?

I've been trying to work out exactly how the TED Talk homepage works. Leaving aside all the animation rubbish, I find the way that the boxes are organised is really fascinating. At first glance it ...
2
votes
4answers
239 views

Background and CSS Floats

So I am using the 960 grid system and found a few things that they don't support. I've considered switching to Blueprint, but I've got to come back to the design a bit later in the process. Anyway, ...
1
vote
1answer
61 views

Adding children to GridLayout dynamically

I have an app that will display a grid of the same image, based on the dimensions chosen by the user. I'm using GridLayout to build that grid, but so far, I have been unable to figure out a way to set ...
1
vote
2answers
380 views

GridLayout and number of rows and columns

Does GridLayout ever not honor the number of rows and columns you've specified if you don't fill it completely? I'm creating a GridLayout with 3 rows and 4 columns. However, I'm only adding 9 ...
1
vote
4answers
371 views

Why are Grid Layouts still seeing such poor adoption?

Having recently become a convert to Grid Layouts, I find myself looking at more and more sites' code and seeing that grids are still grossly under-represented. While I accept that grids might not ...
1
vote
2answers
498 views

What do you believe to be the best CSS Grid system and why?

I've been using Nicole Sullivan's "Object Oriented" CSS grid for a while now (hate the term, though) and have found it to be quite good. However, as I get more experience with grids, I'm noticing a ...
0
votes
1answer
17 views

How to split a Grid row into two columns?

I have the Grid layout with 3 rows.How do i split the 3rd row into 2 columns. <Grid.RowDefinitions> <RowDefinition Height="0.75*"/> <RowDefinition Height="0.25*"/> ...
0
votes
2answers
294 views

GridLayout giving errors, crashing app

I'm pretty new to layouts, but I was able to successfully make a pretty nice looking layout (for a tablet). In Eclipse, it works great. I made it all with the 'target' on Android 4.0 (ICS), but ...
0
votes
1answer
209 views

Possible to control vertical source ordering with 960 Grid System?

I've understood it's possible to control the horizontal (columnwise) source ordering with the 960 Grid System. However, is it possible to do something similar vertically? If not, does anyone know of ...
0
votes
2answers
444 views

What are the parameters for a GridLayout?

private static final GridLayout layout = new GridLayout( 3, 1, 1, 0 ); in this line of code what do the numbers represent and how do you use them to arrange the checkboxes and buttons in the window? ...