1

我有一个按钮,我必须更改它的颜色、大小和名称。

我正在使用<button contenteditable="true">属性。

在下面的示例中,我可以编辑作为按钮名称的文本内容,但我无法更改它的样式,

<button contenteditable="true">This is editable</button>

有什么办法可以改变它的风格吗?

演示

4

3 回答 3

2

您不会仅通过使用 contenteditable 来更改元素的样式。contenteditable用于仅修改/编辑文本。

于 2015-06-10T06:54:00.060 回答
0

是的,您可以为按钮添加样式。请在片段下方找到。

button {
    background-color:#112717;
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:8px;
    border:2px solid #18ab29;
    color:#ffffff;
    font-family:Arial;
    font-size:14px;
    padding:12px 33px;
    text-decoration:none;
    text-shadow:0px 1px 0px #2f6627;
}
button:hover {
    background-color:#23bf2a;
}
button:active {
    position:relative;
    top:1px;
} 

<button contenteditable="true" class="myButton">This is an editable</button>

或者您可以使用单独的 css 类进行样式设置。

于 2015-06-10T06:58:40.497 回答
0

使用 css 将使您的样式更容易,但这里有一个简单的方法来更改按钮颜色。

<button type="button" style= background-color:red >Press Me</button>
于 2015-06-10T07:10:27.157 回答