Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged columns

Rss Feed Group items tagged

Soul Book

CSS techniques I use all the time - 0 views

  • EM calculations Sizing text is always an important part of making a usable design. I start all my CSS files with the following rules: html { font-size:100.01%; } body { font-size:1em; } The explanation for this comes from "CSS: Getting Into Good Coding Habits:" This odd 100.01% value for the font size compensates for several browser bugs. First, setting a default body font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. The current "best" suggestion is to use the 100.01% value for this property.
  • I used the following calculation: 14px/16px = .875, 18px/16px = 1.125. So my default text at 1 em would translate to 16px for most users, and my small text I sized at .875em which I can trust to result in 14px for most users, while my large text I sized at 1.125em which I can trust to result in 18px
  • Safe Fluid-width Columns I work with hybrid fluid layouts all the time, usually with max-width set at anywhere from 900 to 1000px. I usually have floated columns with percentage widths, and browsers will calculate these percentage widths to whole pixel values when rendering the columns.
  • ...3 more annotations...
  • A typical problem is the following: when a user has the viewport at a size that makes the outer container 999 pixels wide, if the first column is 60% and the second is 40%, IE 6 will always calculate the two columns as 600 and 400 pixels and as a result, the two will not fit (600+400 = 1 more than 999) and it will drop the second column. This is obviously not intended behavior, and in a world where we still have to use floats for columns (I can't wait for display:table support across all browsers), it's important to work around this problem. I used to give my last column 1 less percent (in this example, it would have 39% instead of 40%, but this would usually result in columns that don't quite fill up the container. Of late I have been giving the last column .4 less percent (in this example, 39.6%), which seems to work perfectly. Browsers will calculate this width and round up, but it will still fit even with an odd container width like 999px and I won't have to worry about dropped columns.
  • Filtering for Old Browsers To be honest, I barely support IE 6 nowadays. If there is something special about my layout that doesn't work in IE 6, I will simply filter it out of the CSS that IE 6 understands
  • Because old browsers like IE 6 don't support the "first child" selector (right caret >), I can do the following to make sure that IE 6 only gets the basic setting and all the new-fangled browsers get the right result: div#container { width:900px; } html>body div#container { width:auto; max-width:900px; } /* This overrides the previous declaration in new browsers only, IE 6 simply ignores it. */
  •  
    Excellent simple collection of CSS tips that are easy to remember and implement. It's an old article, but i think everything is still relevant
mikhail-miguel

Columns - Data visualization and collaboration platform that allows teams to work toget... - 0 views

  •  
    Columns: Data visualization and collaboration platform that allows teams to work together in real-time to create stunning visualizations using natural language inputs and speech (columns.ai).
magecompinc

How to Add Column in Orders Tab in Magento 2 Customer Admin Edit Page? - 0 views

  •  
    Magento 2 Store Admin can add custom column in orders tab in Magento 2 on the customer admin edit page to get the additional information about the orders placed by the customers. Today, we will see the steps to Add Column in Orders Tab in Magento 2 Customer Admin Edit Page.
Vernon Fowler

A Handy Resource for 1140px Designers » HTML & CSS » Design Festival - 4 views

  •  
    A resource you may find useful is the 1140px Grid created by Australian designer Andy Taylor. The 1140 grid fits perfectly into a 1280 monitor. On smaller monitors it becomes fluid and adapts to the width of the browser. The grid consists of twelve columns, which can be evenly divided into columns of two, three, four or six. In terms of browser support, Andy's grid works in Chrome, Safari, Firefox, IE7, and IE8. IE6 (there's always one, isn't there?) doesn't support max-​​width, so the grid doesn't fix to 1140px. It spans the full width of the browser.
Brij Mohan

Pivot a JavaScript Array: Convert a Column to a Row - TechBrij - 0 views

  •  
    How to convert a column to a row in JavaScript array.
Brij Mohan

Google Chart: Dynamic Data Series from a Column in JavaScript Array - TechBrij - 0 views

  •  
    How to draw dynamic data series in Google Chart from an array column.
jdr santos

Elastic CSS Framework - 11 views

  •  
    A simple css framework to layout web-based interfaces, based on the printed layout techniques of 4 columns but with capabilities to unlimited column combinations. and capacity to make elastic, fixed and liquid layout easily.
ronoet

10 Best WordPress page builders to save your valuable time! - Electronthemes - 0 views

  •  
    What to do: Page Builder's simple drag and drop interface means you'll never get to write one line of code. Page Builder generates all the highly efficient code for your website when you try to make a website. Page Builder gives you complete flexibility. You can choose the precise number of columns for every row and therefore the precise weight of every column right down to the percentage point-to-point.
a2zwebhelp

jQuery charts and Graphs - gvCharts with Google Chart API - 0 views

  •  
    Create interactive charts or graph in 3 easy steps in jQuery by using data from HTML table. gvChart is a jQuert plugin which uses Google Chart API to create interactive charts. gvChat provide options to create Area Chart, Line Chart, Bar Chart, Column Chart and Pie Chart
Vernon Fowler

The future of CSS layouts | Feature | .net magazine - 1 views

  •  
    "Conclusion FlexBox and Columns aside, it's still not definite which new layout modules will be fully implemented cross-browser. I'd say that Positioned Floats and Exclusions are very similar, and could easily be merged (indeed, this seems to be happening). Grid Layout has subsumed Template Layout, and will definitely be in IE10. Regions has already been implemented in a fork of WebKit, so could appear in WebKit browsers (Safari, Chrome, etc) very quickly. So I'd be willing to predict that with some changes to syntax, most of what you see here will make it into CSS3 in the future. If that's the case, I think it's a good thing; these new methods are complementary, not competing, and with a minimum of work will allow us to build very sophisticated websites a few years from now."
Luciano Ferrer

Compare Ninja | HTML & CSS Comparison tables - 1 views

  •  
    "CompareNinja is a free-to-use web application for generating comparison tables very quickly. It simply requires several variables to get started like "the title of the tables" or "number of items to be compared" and then asks for the details of the comparison. There are few skins provided to choose from, new columns and rows can always be added and the HTML output is generated instantly. After that, you can always edit the source and improve the table further. And, yes, creating tables is not hard but, sometimes, a quick method that doesn't require any web editor is handy."
Vernon Fowler

phildionne/golden-bootstrap · GitHub - 0 views

  •  
    Golden Bootstrap is a tiny add-on for Bootstrap giving you the divine power of using golden ratio sized columns. Available both for Less and Sass CSS preprocessors.
a2zwebhelp

Create interactive jQuery charts and Graphs in 3 easy steps - 0 views

  •  
    Create interactive charts or graph in 3 easy steps in jQuery by using data from HTML table. gvChart is a jQuert plugin which uses Google Chart API to create interactive charts. gvChat provide options to create Area Chart, Line Chart, Bar Chart, Column Chart and Pie Chart.
sarah ockonor

Free Business News Yellow Blogger Template - 1 views

  •  
    Business News Yellow Blogger Template, Excellent Design, 2 Columns, Adapted From Wordpress, Left Sidebar, Magazine-Styled, Rounded Corners, Excellent Layout for Blogs About Business Or People, Web2.0 Inspiration, Black, Fixed Width, Yellow and Brown, Tested on the Most used Browsers : Safari, Firefox, IE, Opera...etc, Don't Hesitate To Share This Article if you Like it, That will Help us Providing More Nicht Templates.
Jochen Burkhard

Web Developer Class: Creative Uses for RSS Feeds - www.htmlgoodies.com - 0 views

  •  
    Let's say you have a web site that is updated on a fairly regular basis, you have many, many pages that visitors read daily, and you'd like to promote all of your latest content on each of your content pages, including the home page. For example, the template for your content pages includes space in one of the columns for links to related content, featured content or new content.
sarah ockonor

Free Joomla Themes Templates Movies Blue Design - 0 views

  •  
    Joomla Movies Blue Clouds Web2.0 Theme Template is a Very nice High Quality Design Theme Template for Joomla 1.5 Version, Come with 3 Column, Web2.0 Style Design, Blue and Gray Rounded Corners, Left Sidebar, Fixed Width, Right Sidebar, Suitable for Personal Joomla Websites Or Movies and Cinema Joomla Websites, This Template Was Tested On IE 6.0 & 7.0, Mozilla Firefox, Opera 9.02, Google Chrome and Safari Web Browsers, 100% CSS, Compact, Valid CSS/HTML, This Template is Realized Under Common Creative Lisence, that Mean You have to Leave the Footer Links Intact in Order to use it, Don't Forget To add Some Modules and Plugins To Make Your Joomla Website More Attractive and Flexible.
sarah ockonor

Free BasketBall Sports Wordpress Theme - 0 views

  •  
    BasketBall Sports Web2.0 Wordpress Theme Template, Very High Quality Design Theme for Wordpress Called GT Basketball, nice looking Sport wordpress theme, it's Come with 2 Columns, Dark Brown, black and Green Colors, Rounded Corners, Ready Adsense, Ready Widgets, Web2.0, nice Inspiration and illustrations, It has all the simple features you could want making your blog easy to get around making life for your reader much less confusing in finding what they are looking for, A Great Sport Wordpress Theme for anyone, This work is under Creative Commons Attribution-Share Alike 3.0 License, This means you may use it and make any changes you like, However, credit links must remain on footer for legal use, This Theme Was Tested and Work Fine On IE 6.0 & 7.0, Mozilla Firefox, Opera 9.02, Google Chrome and Safari Web Broswers, this Theme Was Tested on The Latest Wordpress Version Also.
sarah ockonor

Free Joomla Themes Templates Business Blue - 0 views

  •  
    Joomla Office Business Company Web2.0 Theme Template, Nice High quality Design Theme Template for Joomla 1.5 Version, available For Business Companies, Office Or Real Estate Company Websites, come with 2 columns, Web2.0 Illustration, Gray, White, Blue and Orange, English Language, Ready Modules, Ready Widgets Integration, Rounded Corners and Fixed Width, This Template Was Tested On IE 6.0 & 7.0, Mozilla Firefox, Opera 9.02, Google Chrome and Safari Web Browsers, 100% CSS, Compact, Valid CSS/HTML, This Template is Realized Under Common Creative Lisence, that Mean You have to Leave the Footer Links Intact in Order to use it, Don't Forget To add Some Modules and Plugins To Make Your Joomla Website More Attractive and Flexible.
sarah ockonor

Brown Wood Design Free Blogger Template - 0 views

  •  
    Blogger Soul Vision Brown Wood Template is very Nice Looking Blogger Layout, come With 2 Columns, Right Sidebar, Grunge, Vector Wood, Brown, Fresh Blue, Web2.0 Inspiration illustration, Black, English Language, Fixed Width, Rounder Corners, Don't Forget to Share it if you like it, It has a cool looking header with search box and feed chicklet, It overall has a very nice layout, Suitable for Grunge blogs, Vector Blogs, Design Blogs or Neutral Blogs.
sarah ockonor

Free Snowman Christmas Blogger Template - 0 views

  •  
    Snowman Christmas Blogger Template, High Quality Design Template, Come with 2 Columns, Snowman Header Banner, White, Elegant, Fixed width, Fresh Illustration, Blogging Style, Top Header Menu, Right Sidebar, Web2.0 Interface Illustration, Email Subscription Widget, Ready RSS, Minimal and Unique Design, Rounded Corners
1 - 20 of 52 Next › Last »
Showing 20 items per page