-2

Web インターフェースを開発していて、CSS3 で美しくしたいと考えています。私は HTML5 を使用していません。ページには、 border radiusgradientなどのスタイルが設定されます。

のような CSS3 スタイリングを検証 (およびサポート) するソフトウェアが必要です-moz-border-radius

オンラインツールはたくさんありますが、PCにインストールできる(オフラインで作業する)ソフトウェアが欲しいです。私は、ソフトウェアが自動的に適用され、境界線の半径の単一のコントロール、グラデーション コントロールなどのすべての CSS グラデーション構文の両方 (考えられるすべてのバリエーションと適応を意味します) を自動的に適用することを期待してい-moz-borderますwebkit border

要するに、CSS3を完全に制御できる、構文を知らない初心者にやさしいソフトウェアが欲しいのです。ソフトウェアは、使用する構文を学習する必要があるため、オートコンプリートを使用するだけでなく<div><span>などのいくつかの要素にスタイルを実装するためのコントロールまたはオプションを備えている場合があります。ソフトウェアは、ライブページプレビュー ( Style Masterのようなもの) を含む Web ページの WYSWYG 編集をサポートする場合があります。 )。ソフトウェアは、複数のブラウザーの互換性についても通知する場合があります。

適切なソフトウェアの選択を手伝ってください。

4

1 に答える 1

1

I m not sure if any editor will automatically apply the webkit declaration when you type in the moz declaration. Having said that, you can try Komodo Edit (it's free and platform independent) which supports all the CSS3 styles and will offer to auto-complete it for you as you start typing the initial few letters of the CSS3 property.

Another thing I d like to add here is, of course this will only solve the border radius issue, you can use the jquery corner plugin wherein you specify the selector and assign the corner function to it like this

$(".button").corner();

This will apply the moz, webkit etc declarations at run time automatically based on the browser accessing it. There are more ways you can use the corner plugin too.

$(".button").corner('5px'); //specify border radius

or

$(".button").corner('tl tr'); //apply border radius only to top left and top right

jQuery corner: http://jquery.malsup.com/corner/

Komodo Edit: http://www.activestate.com/komodo-edit

于 2012-04-23T09:59:50.960 に答える