Hi guys,
I want a simple 2 column layout with an image in the left column which is constrained inside the div.
Can anyone explain why this works...
- <div class="ui-block-a">
- <img src="images/my_image.jpg" style="width: 100%" />
- </div>
Whereas this doesn't:
- <style type="text/css">
- .ui-block-a img
- {
- width:100% !important;
- }
- </script>
- <div class="ui-block-a">
- <img src="images/my_image.jpg" />
- </div>