Skip to content
#

CSS

css logo

Cascading Style Sheets (CSS) is a language used most often to style and improve upon the appearance of views. It allows for the separation of presentation and content, and includes the characteristics of layouts, colors and fonts. CSS builds upon HTML to make webpages more interactive and appealing to the user.

Here are 46,766 public repositories matching this topic...

bootstrap
birdspider
birdspider commented Oct 31, 2019

I had a nice issue description before github/related issues-beta ate it, here's the gist:

https://getbootstrap.com/docs/4.3/utilities/flex/#justify-content

The flex justify documentation examples only display equal-width items (<div>Flex Item</div>).
It might be wise to add one or two examples with non-equal-width divs and more than 3 cols.

Specifically to illustrate that the middl

electron
xiaoouwang
xiaoouwang commented May 30, 2019

on the documentation page it says that a live example is the fixed table of contents, however when we click the demo it gives another example which is , in my opinion, rather rare in real life.

https://materializecss.com/pushpin.html

I've tried to replicate the fixed toc but to no avail, I've put pinned in the toc div so that it doesn't move but I don't think it's the right solution.

but

leecade
leecade commented Nov 21, 2019

🙋 feature request

https://github.com/parcel-bundler/parcel/blob/d24e09a9797af41a9d2c6c733b1c6cf6671d60c7/packages/core/workers/src/Profiler.js#L2

The inspector module not always available, it depends on build param --without-inspector

🤔 Expected Behavior

Compatible with --without-inspector mode.

😯 Current Behavior

Direct import

💁 Possible Solution

Not pretty

tomoya92
tomoya92 commented May 3, 2017

bootstrap的打包结构

├── css
│   ├── bootstrap-theme.css
│   ├── bootstrap-theme.css.map
│   ├── bootstrap-theme.min.css
│   ├── bootstrap-theme.min.css.map
│   ├── bootstrap.css
│   ├── bootstrap.css.map
│   ├── bootstrap.min.css
│   └── bootstrap.min.css.map
├── fonts
│   ├── glyphicons-halflings-regular.eot
│   ├── glyphicons-halflings-regular.svg
│   ├── glyphicons-halflings-regu
alexpi
alexpi commented Dec 2, 2019

I was trying to use the pathLength property Stylefire provides, with no luck. Stylefire's documentation reads:
These are all set as a progress of the total path length, from 0 to 100, which is automatically measured by Stylefire.
This seems to be wrong, it should be '0 to 1'.

suguoyao
suguoyao commented Mar 13, 2019

采用尤大大的回答:

1. 原生 DOM 操作 vs. 通过框架封装操作。

这是一个性能 vs. 可维护性的取舍。框架的意义在于为你掩盖底层的 DOM 操作,让你用更声明式的方式来描述你的目的,从而让你的代码更容易维护。没有任何框架可以比纯手动的优化 DOM 操作更快,因为框架的 DOM 操作层需要应对任何上层 API 可能产生的操作,它的实现必须是普适的。针对任何一个 benchmark,我都可以写出比任何框架更快的手动优化,但是那有什么意义呢?在构建一个实际应用的时候,你难道为每一个地方都去做手动优化吗?出于可维护性的考虑,这显然不可能。框架给你的保证是,你在不需要手动优化的情况下,我依然可以给你提供过得去的性能。

2. 对 React 的 Virtual DOM 的误解。

React 从来没有说过 “React 比原生操作 DOM 快”。React 的基

calvinjuarez
calvinjuarez commented Jul 14, 2018

Not sure if this is a bug or a feature request, but it'd be nice if this Less would try to assume .less even if there's a . in the filename.

For example:

css/bootstrap.less

//...
@import 'bootstrap.theme';

I was hoping it'd import bootstrap.theme.less, but instead it throws this error:

css/bootstrap.less: [L68:C0] 'bootstrap.theme' wasn't found. Tried - css

Created by Håkon Wium, Lie Bert Bos

Released December 17, 1996

Website
www.w3.org/Style/CSS/Overview.en.html
Wikipedia
Wikipedia

Related Topics

react css-preprocessors bootstrap
You can’t perform that action at this time.