I am fairly new to CSS and have a question that is probably really easy to answer. I am setting up a site using a theme and noticed that there is already styling in the CSS for images. I have been trying to call to the styling, but have not had luck. I guess I was just curious about what I would do to call to this image style so that I could apply it to several images.
I thought <img class="internal"> would work. but I was wrong. The css looks like this:
The styling continues for about 15 more lines. I am not familiar with calls that don't start with a . or #. Again, I am new to CSS so any help with this would be appreciated.
Any CSS id/class for an element that appears last will be the one used if there are identical CSS style rules.
This makes no sense: img.size-auto, img.size-full, img.size-large, img.size-medium, .attachment img{max-width:100%; height:auto; } Images also must maintain their proper aspect ratio to prevent distortion.
This already floats left and floats remove that element/elements from the normal document flow: .alignleft, img.alignleft{display:inline;float:left;margin-right:24px;margin-top:4px;} The browser's default is to align to the left unless changed.
Bookmarks