0

私は Wordpress テーマを開発しており、Bootstrap フレームワークを使用しています。Bootstrap CSS ファイルのスタイルの 1 つは次のとおりです。

input,
textarea,
.uneditable-input {
  width: 206px;
}

検索ボタンに影響しているので、CSS ファイルでスタイルを width: auto; として再宣言する必要があります。これが標準的な慣行なのか、それともそのようなフレームワークを実装するためのより良い方法があるのか​​ どうか疑問に思っています.

4

1 に答える 1

2

Yes when you are using CSS frameworks, you will have to override unwanted styles by duplicating the styles. You can ofcourse edit the original CSS in the framework, however you'll lose those changes when upgrading to a newer version. In case of Bootstrap you can edit the LESS file and generate a new CSS

于 2013-06-02T02:21:49.887 に答える