i am trying to resize a button using the following code and it has had no effect on the button it has remained the same size.
<button style="width:126" style="height:29" onclick="history.go(0)" ><img src="admin/images/reset_btn.gif" /></button>
i am trying to resize a button using the following code and it has had no effect on the button it has remained the same size.
<button style="width:126" style="height:29" onclick="history.go(0)" ><img src="admin/images/reset_btn.gif" /></button>
You have two style attributes, place both the height and width in one like this:
<button style="width:126;height:29" onclick="history.go(0)" ><img src="admin/images/reset_btn.gif" /></button>
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.