0

I want to display my records like Multiocol tag holds. tag may be no longer to use as only netscape supports.

Is there any alternative tag to support same like Operation here is an example

Jankya
  • 966
  • 2
  • 12
  • 34
  • You can use css3 to get the same effect. Here is an example: div { -webkit-column-count: 3; /* Chrome, Safari, Opera */ -moz-column-count: 3; /* Firefox */ column-count: 3; } – Kurenai Kunai Apr 22 '15 at 05:22
  • There is not enough info in this question to figure out what you actually want. http://stackoverflow.com/help/how-to-ask – Taryn East Apr 22 '15 at 05:24

2 Answers2

0

Check this out

http://www.w3schools.com/cssref/tryit.asp?filename=trycss3_column-count

div {
    -webkit-column-count: 3; /* Chrome, Safari, Opera */
    -moz-column-count: 3; /* Firefox */
    column-count: 3;
} 
Arun Bertil
  • 4,598
  • 4
  • 33
  • 59
  • Thanks for your Answer. I already look that option also. I wanted to be like MULTICOL tag with selectable option. – Jankya Apr 22 '15 at 05:32
  • selectable option what is the exact requirement any particular column you need to select via css or what? – Arun Bertil Apr 22 '15 at 05:36
  • is this what you want..check the sample https://css-tricks.com/almanac/properties/c/column-count/ – Arun Bertil Apr 22 '15 at 06:13
0

You can use css3 to achieve the results like this:

div{
    -moz-column-count: 6;
    -webkit-column-count: 6;
    column-count: 6;
}

Or 2d-transforms like Multi-columns

And here is one with selectable option

Community
  • 1
  • 1
Kurenai Kunai
  • 1,842
  • 2
  • 12
  • 22