Not : buton yerine resim papamam value değeri veritabanından çekiyor ve değişken.
<input name="Submit" type="submit" style="width:100px; height:100px" value="Buton değeri Uzun"/>
7
●2.640
<input name="Submit" type="submit" style="width:100px; height:100px" value="Buton değeri Uzun"/>
<input name="Submit" type="submit" style="width:100px; height:100px; word-break:break-all" value="Buton değeri Uzun"/>Mobil cihazdan gönderildi.
<input name="Submit" type="submit" style="width:100px; height:100px; word-wrap: break-word" value="Buton değeri Uzun"/>ancak bu şekilde firefox'ta çalışmayacaktır onun için de word-wrap: break-word kodunun önüne white-space: pre-wrap kodunu eklemelisin.
<input name="Submit" type="submit" style="width:100px; height:100px; white-space: pre-wrap; word-wrap: break-word" value="Buton değeri Uzun"/>
<input id="bir" name="Submit" type="submit" style="width:100px; height:100px; text-wrap:supress; white-space: pre-wrap; word-wrap: break-word" value="">
<script type="text/javascript">
document.getElementById('bir').value = 'Buton \n değeri Uzun';
// $("#bir").val('Buton \n değeri Uzun'); //jquery ile
</script>Bilmiyorum bu şekilde işine yarar mı?