S
S
srko2014-06-10 18:20:37
HTML
srko, 2014-06-10 18:20:37

What is the best framework for frontend?

Actually, what is better to learn ZURB Foundation 5 (with SASS) or Twitter Bootstrap 3 (with LESS)?
I planned to dive into Bootstrap, but I came across a completely reasonable opinion that Foundation would be better for the front-end.
I myself have never worked with either. I'm not even familiar with preprocessors.
I am only engaged in layout and I understand that it is time to choose something. Then I plan to make up Wordpress themes.
I would like to hear the opinion of experts.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
D
Denis Ineshin, 2014-06-10
@IonDen

Frameworks for different tasks.
In general, if you are building a regular website or a WordPress theme, then they are not needed at all.

A
anyd3v, 2014-06-10
@anyd3v

If the question is in Less only because of bootstrap, then here is their port on sass getbootstrap.com/css/#sass
I am for sass/scss

P
Piranis, 2014-06-11
@Piranis

sass + compass + haml(rails)
e.g. gradient
from

background-color: #ffffff;
@include filter-gradient(#ffffff, #e5e5e5, vertical);
@include background-image(linear-gradient(top,  #ffffff 0%,#e5e5e5 100%));

in
background: #ffffff;
background: -moz-linear-gradient(top,  #ffffff 0%, #e5e5e5 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5));
background: -webkit-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%);
background: -o-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%);
background: -ms-linear-gradient(top,  #ffffff 0%,#e5e5e5 100%);
background: linear-gradient(to bottom,  #ffffff 0%,#e5e5e5 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question