Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7842283
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T16:17:04+00:00 2026-06-02T16:17:04+00:00

Possible Duplicate: How to get css3 multi-column count in Javascript I have a long

  • 0

Possible Duplicate:
How to get css3 multi-column count in Javascript

I have a long dynamic text which is going to be split into columns by using CSS

div
{
    -moz-column-width: 500px;
    -moz-column-gap: 20px;
}

Is it possible to get how many columns are created? I’m using jQuery in the client side.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T16:17:05+00:00Added an answer on June 2, 2026 at 4:17 pm

    Your questions and fiddle ignore vendor prefixes; larssin’s answer is a good direction but isn’t complete.

    I created a small helper function for you, which goes over currently implemented prefixes for these values, fetches the actual values with .css() and returns the correct number. Works cross-browser, including non-supporting browsers which always return 1.

    I chose to ignore the iframe case, which just makes things more complicated but as I understand isn’t related directly to your question.

    Update: Now accounts for border and padding.

    Code on jsFiddle and here:

    function getColumnsNumber(el){
        var $el = $(el),
            width = $el.innerWidth(),
            paddingLeft, paddingRight, columnWidth, columnGap, columnsNumber;
    
        paddingLeft = parseInt( $el.css('padding-left'), 10 );
        paddingRight = parseInt( $el.css('padding-right'), 10 );
    
        $.each(['-webkit-','-moz-',''], function(i, prefix){
            var _width = parseInt( $el.css(prefix+'column-width'), 10 );
            var _gap =   parseInt( $el.css(prefix+'column-gap'), 10 );
            if (!isNaN(_width)) columnWidth = _width;
            if (!isNaN(_gap))   columnGap = _gap;
        });
    
        columnsNumber = Math.floor( (width - paddingLeft - paddingRight) / (columnWidth + columnGap) );
        if (isNaN(columnsNumber) || columnsNumber < 1) columnsNumber = 1;
        return columnsNumber;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Get image data in Javascript? Hello, I've got a single div, which
Possible Duplicate: Get property of object in JavaScript If I have the following: var
Possible Duplicate: Get image data in Javascript? Convert an image into binary data in
Possible Duplicate: How to get javascript variable value in php I am looking for
Possible Duplicate: How to get notified of UITableViewCell move start and end I have
Possible Duplicate: PHP get all arguments as array? Within a javascript function arguments always
Possible Duplicate: How to get the address of an overloaded member function? I have
Possible Duplicate: Get column index from label in a data frame I need to
Possible Duplicate: Get current URL with JavaScript? How do you get the address of
Possible Duplicate: Get a function's arity Say I have: function a(x) {}; function b(x,y)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.