1

だから私は使用しています

-webkit-border-radius: 10px;

今のところテキスト入力フィールドですが、問題は、フィールドがになると、変更されていないselectedがあることです。borderborder radius

私の質問は、これを変更する方法を知っている人はいますか?

4

4 に答える 4

0

While there's no (so far as I'm aware) cross-browser implementation of outline-radius, or even a vendor-prefixed implementation other than the -moz- variant, you could perhaps emulate it with an inset box-shadow:

.elementClass {
    padding: 0.2em;
    outline: none;
    border: 1px solid #000; /* in Chromium 18/Ubuntu 11.04 setting
                               the border is required for the outline
                               to be applied, this may not be true elsewhere */
    border-radius: 0.4em;
}

.elementClass:focus,
.elementClass:active {
    box-shadow: inset 0 0 1px 2px #f90;
}​

JS Fiddle demo.

于 2012-06-03T20:41:12.367 に答える
0

輪郭を境界線のような半径に設定できるかどうかはわかりませんが、で削除できます

outline:none;
于 2012-06-03T00:45:45.677 に答える
0

現時点で -moz-outline-radius に相当する Webkit はありません

于 2012-06-03T20:30:58.900 に答える
0

アウトライン以外にも使用できます

-webkit-appearance: none;
于 2012-06-03T01:15:10.933 に答える