Tagged Questions
The tableless tag has no wiki summary.
5
votes
3answers
173 views
Side-by-side elements without using tables
I've noticed that StackOverflow resorted to using a table-based layout for the comments area beneath posts:
Notice how the text all stays to the right of the button area, regardless of how many ...
5
votes
3answers
368 views
Table vs CSS-based layouts for web pages
I use HTML templates for my website from sites that sell templates as I'm not a designer and would like something ready, I use Rails for my development. I noticed that some sites design their ...
4
votes
3answers
288 views
CSS 100% height layout
I know this is a sort of a common problem, and I looked up some solutions, but couldn't find exactly what I was looking for.
I would like to convert this to a tableless layout: ...
4
votes
7answers
362 views
benefits of tableless design of web pages? [closed]
Possible Duplicate:
Why not use tables for layout in HTML?
These days, I am reading a lot that we should write tableless HTML. I believe that requires a lot of CSS knowledge. My questions ...
4
votes
10answers
280 views
Should I teach CSS layout directly to new learners or should I first teach how to make layout with tables, then table-less layouts?
Should I teach CSS layout directly to new learners or should I first teach how to make layout with tables, then div+CSS?
And what should I teach between HTML or XHTML? Both are same so should I start ...
4
votes
12answers
8k views
Best way to implement a 3-column website using <DIV> tags?
I'm developing a 3-column website using a layout like this:
<div id='left' style='left: 0; width: 150px; '> ... </div>
<div id='middle' style='left: 150px; right: ...
3
votes
1answer
487 views
Ruby on Rails: Fully functional tableless model
After searching for a tableless model example I came across this code which seems to be the general consensus on how to create one.
class Item < ActiveRecord::Base
class_inheritable_accessor ...
3
votes
9answers
318 views
Tableless html alternative
Can someone show me some html to layout the following not using tables?
______________________________________
|_______|_____________| |
|_______|_____________|_______________|
...
3
votes
6answers
519 views
Can div really override table for everything on layouts?
Maybe there is already a question about this subject, but I couldn't find it.
My question is simple,
Can I use only divs on a page layout?
I got myself in trouble to create a div with corners for ...
3
votes
3answers
598 views
Is there a way to create a full width horizontal navigation without using a table?
I have a horizontal navigation with variable width 'buttons'. I would like the navigation to span the entire width of the containing div. I was able to accomplish this if I put the navigation in a ...
2
votes
3answers
86 views
Impossible seemingly simple CSS layout?
I've been fiddling with this the entire day and the closest I got is the following layout that works in Chrome (but not in Firefox).
Is it possible to do without the tables (and without js)?
Is it ...
2
votes
4answers
100 views
Border-styles on CSS table-like matrix, without extra classes
I'm making a table-like layout using only CSS. With all the cells set to float:left the container .matrix is wide enough for 4 cells horizontally.
<div class="matrix">
<!-- first row ...
2
votes
1answer
59 views
tableless CSS problem
In general I know how to use css but not advanced css
So I need some help in order to start. Unfortunately I can't find any good and decent guide for tables without css and the part I want to do is ...
2
votes
6answers
669 views
CSS Hell simulating TABLE with DIV
I´m trying to simulate a table using only CSS and DIV. The problem is that nothing that I do can perfectly simulate a table layout behavior.
Below is the table layout that I want and immediately ...
2
votes
1answer
153 views
Library to print tabular data on a web page
Are there any libraries I can use to pretty print tabular data(from php code)?
What I mean is, if I have:
$headers = array("name", "surname", "email");
$data[0] = array("bill", "gates", ...
2
votes
1answer
414 views
Menu Layout works in all browsers EXCEPT iPhone
I have a menu very similar to the menu here on StackOverflow. The problem is that my menu looks right in every browser I've tested it on EXCEPT for my iPhone.
Here is a screenshot of the iPhone
...
2
votes
3answers
359 views
Is it good to use float in table less design?
Is it good to use float in table less design? What is the pros/cons of float in the context of table less cross browser compatible design? Is there any the best practices guidelines for cross browser ...
1
vote
1answer
110 views
Rails 3.1: Cucumber test without a database
I have a simple Rails 3.1 application that doesn’t have any database. But when I executes Cucumber tests all test scenarios were failed due to the following error:
...
1
vote
2answers
55 views
How to build a form without using tables in asp.net?
i need a three columns form, in the past using tables was easy but now using divs i dont know from where to start... im googling but the css i found doesnt work for me, any help or link will be ...
1
vote
4answers
487 views
Tableless model in rails 3.1
Looks like this method doesn't work anymore in rails 3.1. So, does someone have a working solution?
Actually, I've found this gist. It solves problems with columns_hash and column_defaults errors ...
1
vote
1answer
280 views
Display: table-cell, contents and padding
I have a very straightforward HTML page that displays content in two columns. To format the columns I'm using <div> as the outer container (display: table-row) and two inner <div> as the ...
1
vote
2answers
145 views
Test tableless model in Rails
When I run 'rake test' I get this error:
1) Error:
test_the_truth(DetailsThankYouTest):
ActiveRecord::StatementInvalid: SQLite3::SQLException: no such table: details: DELETE FROM "details" WHERE 1=1
...
1
vote
1answer
437 views
How to retrieve data into a <textarea> HTML tag in C# / Visual Studio?
Using DataList, it's not possible to collect data into a <textarea></textarea> HTML tag. Because Visual Studio automaticly adds table and so td and shows data in these HTML tags.
I want ...
1
vote
4answers
630 views
Justified navigation buttons
I'm trying to create the primary navigation menu for a website that will have a variable amount of primary menu items. The navigation bar is horizontal and has a width of 738px. I would like to have ...
1
vote
4answers
541 views
CMS without a template?
Is there a CMS that can manage content on a site without having to implement a template?
I've already designed a site with XHTML and CSS, so don't need a template, but do need active content ...
1
vote
4answers
545 views
To Tableless or not to tableless: Html expanding box with custom corners
i'm running into problems using DIV's to style a contentbox for my website. It basically looks like this:
container
+--------------------------+
|+--+------------------+--+|
||c1| ...
1
vote
7answers
2k views
How to create desired form with css without using too many div tags?
The mailing list form I am creating has the following fields: first name, last name, street address, city, state, zip, email, and phone number. I created the form using list items and css NOT tables. ...
0
votes
1answer
15 views
How to create a two-column table with CSS where images are NOT scaled
I have the following CSS code to create a simple two-column table:
#tableContent {}
#tableContent .left { float: left; width: 130px; margin-right: -200px;position: relative;}
#tableContent .right ...
0
votes
3answers
38 views
How can I have two DIV s on the same line , one aligned to the left and one aligned to the right without an HTML table?
I want the votediv on the right, independent of the text size of the article with class name "note". what happens if I assign
<div class="votediv" style="right:0; position:relative">
on css?
...
0
votes
2answers
93 views
Divs side by side and centered
I have a block of divs and I need to align them centered.
I have sucessfully put them side by side, but it´s dinamic and the last one needs to be centered.
Here is my CSS:
.mosaicoBox {
...
0
votes
2answers
98 views
Divide Width of Element Between Child Divs With CSS
I have a varying number of inline-block divs that I want to collectively take up %100 of their parent. Can this be done without JavaScript? The only way I can think of is with a table and from what ...
0
votes
4answers
129 views
Side-by-side elements *with variable content* without using tables
This is similar to a question I've asked previously, but with a twist.
I have some content that I'd like to represent semantically in HTML as a list. Each entry in this list has variable content on ...
0
votes
1answer
81 views
.net server controls + table-less design + smart phones compatibility
are there any 3d party asp.net controls
which can output table-less html (grids)
plus can be properly rendered on smart phones.
I am looking to have one design for computer browsers and smart phones
...
0
votes
4answers
185 views
Advanced table-layout to CSS
I have gotten the assignment to code a website from tables to CSS. While this is easy I have one question on how to recreate one of the site's biggest detail.
Site is: www.optimizer.dk.
How can I ...
0
votes
2answers
426 views
How can I inizialize that ActiveRecord Tableless Model?
I am using Ruby on Rails 3 and I would like to inizialize an ActiveRecord Tableless Model.
In my model I have:
class Account < ActiveRecord::Base
# The following ActiveRecord Tableless Model ...
0
votes
1answer
305 views
CSS simple float left problem in IE compatability mode
I'm trying to get two boxes side by side (A 200px left menu, and next to it a 100% remaining width main content area).
It works fine in all browsers, but a lot of our clients are using IE6 (nothing ...
0
votes
3answers
99 views
a web page layout
I am build a page,however I meet some layout related probelms,I can not make the div ajust its size(acutally the height) automatically. See the following markup:
<!DOCTYPE html PUBLIC "-//W3C//DTD ...
0
votes
1answer
93 views
questions about tableless column for ActiveRecord
I have a question about ActiveRecord hope any of you can help me a bit. Thanks in advance :).
I have a ActiveRecord model which has a boolean field to indicate whether the use has accepted the ...
0
votes
2answers
122 views
Help in converting to tableless table
tableless not understand anything and was wondering how the code below
in this table, turn into tableless
http://adresende.com.br/help/layout.html
Who can help me, I'll be very grateful
0
votes
3answers
617 views
Html Tableless form
I have a section of an html page that I want to display in a table-like way. I keep hearing not to use <table> for layout. And I get the general reasoning.
1) mark up becomes bloated, so it ...
0
votes
3answers
343 views
Want to display 4 images in a row, with a description below each image
I'm tring to practice table-less design, and I trying to get the following:
4 images per row, and under each image is the name of the image.
So my DOM:
<div id="images">
<div ...
0
votes
2answers
217 views
Preference values - static without tables using a model with virtual attributes
Im trying to eliminate two tables from my database. The tables are message_sort_options and per_page_options. These tables basically just have 5 records which are options a user can set as their ...
0
votes
1answer
894 views
Resize image and add an overlay image without using tables and without losing style in xml
I am building a system to create a "fake video embed" with thumbnails and play buttons over them. The images are coming from a service at a standard size, so have no choice but to resize them in HTML. ...
0
votes
2answers
294 views
How do I stop ActiveRecord looking for a table?
I am trying to create an ActiveRecord model called 'Search' without a table. I keep getting this error when I do @search = Search.new.
sql::Error: Table 'searchdemo_development.tablelesses' doesn't ...
0
votes
3answers
9k views
Putting 2 divs side by side / Internet Explorer 6/7 float and padding (?) bug fix
I need to put 2 divs side by side. But what's more important, I want this to display correctly in IE6/7. I have managed to succeed this with Firefox though.
My code:
#container{
padding:10px;
}
...