A collection of CSS files intended to help developers build sites for any form factor on any device
Questions tagged [skeleton-css-boilerplate]
168 questions
34
votes
4 answers
Is Twitter's Bootstrap mobile friendly like Skeleton?
Skeleton is made to scale to also fit mobile browsers, following the principles of responsive web design. Does Bootstrap offer the same?

newnomad
- 1,055
- 3
- 11
- 15
7
votes
2 answers
Two Dash controls side-by-side
I am confused as to how to layout controls in dash. How do I put the dropdown and the datepicker on the same row side-by-side?
html.Div(
[
html.Div(
[
dcc.Dropdown(id='dropdown',
options=[{'label':…

Ivan
- 7,448
- 14
- 69
- 134
7
votes
3 answers
how to show grid lines with CSS?
I'm using getskeleton.com for a responsive website and I'm trying to show the grid lines in the background something like this http://nimb.ws/fTE2AR or http://fearonhay.com/residential/courtyard-house . What would be the best way to accomplish that?…

user3534270
- 79
- 1
- 1
- 2
7
votes
5 answers
Centering a div in Skeleton
For a project of mine, I'm using Skeleton Boilerplate for the first time. And I'm looking for the best practice of centring a div in Skeleton without bashing into the rules of Skeleton.
At the moment, I've the following structure for a login…

Can
- 4,516
- 6
- 28
- 50
7
votes
1 answer
Altering Skeleton framework to 1400px as default
I'm quite new to skeleton but I would like to use it for a project. The project consists of 4 divs that have a maximum width of 1400px, and I would need these to scale down along with the browser. I'm not sure how I would go about altering the…

Steve Stevenson
- 317
- 2
- 11
6
votes
1 answer
How to make 100% height columns with skeleton?
I would like to have 2 columns that are 100% height, without using and using the responsive columns from skeleton css.
html, body {
height: 100%;
}
.container {
min-height: 100%;
}
.column, .columns {
min-height: 100%;
}