Monday, June 24, 2013

How to split ul into multiple columns

[caption id="attachment_851" align="alignnone" width="308"]ul multi column ul multi column[/caption]

[sourcecode language="css"]
ul{
width: 300px;
overflow: hidden;
}

ul li{
float: left;
width: 75px;
}
[/sourcecode]

1 comment:

  1. Nice one. I've tried other options but none worked with my css even reseting until I found this one (in my case I used just ul {width: 100%;} li {width: 30%; float:left;} )
    Tyvm.

    ReplyDelete

How to enable CORS in Laravel 5

https://www.youtube.com/watch?v=PozYTvmgcVE 1. Add middleware php artisan make:middleware Cors return $next($request) ->header('Acces...