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.
我在文章中有这样的硬编码图片:
<img border="0" align="right" src="http://www.domain/picture.jpg" width="300" height="450">
我无法更改这行代码,但想为该图像添加 CSS(仅右对齐),有什么方法可以在不更改其他对齐方式的情况下完成此操作?(如果我将 CSS 添加到 img 那么它也会改变为中心对齐的图片等)
我希望有人有时间回答:)
谢谢!
你可以使用属性选择器
img[align="right"] { // your css }
CSS 属性选择器根据给定属性的存在或值匹配元素。
添加这样的样式
img[align='right'] { // Some styles }
您还可以向此图像添加类,然后将样式应用于该类。