[Solved] how can I make my image in my page become original size? [closed]


Bootstrap is including the style img { max-width: 100%; }. In most cases, this is what you want… images larger than the viewable area will be scaled to fit. To override, use the value none. You should try to target just the image that you want to be the full width by adding a new selector to your stylesheet. In your case, I would use the following CSS:

.Output img {
  max-width: none;
}

4

solved how can I make my image in my page become original size? [closed]