問題タブ [less]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
css - Use any CSS compiler (Sass, Less) to generate the selector
So I've recently been playing around with CSS compilers, but I have no idea how (or if it's possible) to dynamically generate pieces of a selector.
For instance, let's say I wanted to make mixins to get
to work cross browser. I would have to do the styles, yeah, but I would have to do the IE6/7 selector hacks to get them to work in those browsers too. Ideally I'm looking for a one off thing to add to an element and have the ability for that to work. Some kind person recently gave me this solution: CSS compilers and converting IE hacks to conditional css
and it would be nice to implement that in a minimal way that would allow me to specify it for a given element and be on my way (for instance in Less, you can create a class with styles, pass that class to another element, and that element will inherit all of those styles. It would be nice to pass an element .inline-block; and it create the styles needed to support IE6/7 without having to resort to stuff like
Any ideas?
EDIT: for instance as well, how could I do something like clearfix for LESS? (lesscss.org)? If Sass can only do it then that will work too.
visual-studio-2010 - VisualStudioにLessCssのIntellisenseと構文の色付けを提供させることはできますか?
私はLessCssを試していますが、VisualStudio2010を使用しています。
エディターが構文の強調表示とIntellisenseforLessのサポートを提供してくれれば、たとえば変数の色付けや提案ができれば便利です。それを機能させるための私のオプションは何ですか?そのためのプラグインを作成する必要がありますか、それともこれをVSに追加するにはどうすればよいですか?これにはすでに何かありますか?
python - Python での Ruby LESS gem 相当物
Ruby LESS gemは素晴らしいですね。私は Python/Pylons Web プロジェクトに取り組んでおり、非常に役立つでしょう。CSS は、よく知られている人が最近 について書いたように、いくつかの重要な点で扱いにくいものです。だから、もっと自分を楽にしたい。
並列機能を提供する既存の Python モジュールまたはライブラリはありますか?
css - WindowsでのCSSの削減
WindowsボックスでLESSforCSSを設定しようとして、rubyとrubygemsをインストールし、指示に正確に従いました。
入れteststyle.less
ましたC:\
。
入力すると
それを.cssファイルにコンパイルすると、エラーが発生します。
LESSに精通している人のうち、私の問題の解決策を持っている人はいますか?
インストールを台無しにしましたか?
php - PHP exec()がバッチファイルを実行していません
私はこの問題についてグーグルで調べてみましたが、同じ問題を抱えているが解決策がない人がたくさん見つかりました。
これresult
は空の文字列とoutput
空の配列です。同じこと:
パスは正しいと確信しています。exec()が有効になっていると確信しています。
exec
、、を試しましたがshell_exec
、system
何も機能しません。
lesscはCSSが少ないです。
編集
apacheエラーログには次のように記載されています。
'"ruby.exe"'は、内部または外部コマンド、操作可能なプログラム、またはバッチファイルとして認識されません。
css - Firebug で LESS CSS コード (.less) を表示する方法はありますか?
私はLESS CSSを使用してきましたが、素晴らしいと思います。唯一の欠点は、コードが firebug のインスペクターに表示されないことです。
この問題に対処する方法はありますか?
css - less.jsがChromeで機能しない
less.jsが firefox では機能しているのに Chrome では機能していないことに気付きました。
試しhtml { background: red; }
てもchromeで動かないのですがどこか間違っているのでしょうか?
vim - LESS(Less CSS)で--watchを有効にすると、Vimは現在の.lessファイルに読み取り専用の警告を表示します
--watchを有効にするたびに:lessc style.less --watch
style.less
ファイルに何かを保存しようとするたびに、Vimは次のメッセージを表示します。
したがって、ファイルを保存するたびに、:w!と入力する必要があります。
読み取り専用を排除するための提案はありますか?
css - Less を使用する場合の CSS 値のスラッシュ (`/`) (例: `font` 短縮形)
Less をフォントの短縮形で使用すると問題が発生することに気付きました
上記は失敗します
プロパティを分割すると機能します
}
スラッシュが原因だと思います/それが問題を引き起こしていると思います.Lessは計算を行うことができるので、例えば. 2px + 5 = 7px
その分割をしようとしていますか?