I have an <object> in my page code and my background color is not white. The object is created with a white border, which I don't want.
<object>
Any ideas on how to make it border: 0px;
border: 0px;
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Any ideas on how to make it border: 0px; or border-color: #whatever;? Neither of those work. Can someone help me figure this out. Thanks
border-color: #whatever;
I need to know how to change the form backcolor. In the button click event, I have this.BackColor = SystemColors...
How should this part be written for, say, the color blue?
アウトライン ルールが表示されている可能性があります。これCSSで削除されます:
CSS
object { border: none !important; outline: none !important; }
!important機能することを確認したら、おそらくタグを削除する必要があります。
!important
ブラウザーで何かをデバッグする場合、ブラウザー コンソール内で設定されているスタイルを確認できるはずです。たとえば Chrome では、要素を右クリックすると、特定の DOM 要素に適用されているスタイルが正確に表示されます。