我想改變這個CSS文本對齊。這是對的,但我希望它被留下。如何更改文本與Greasemonkey對齊?
<div class="btn_gonder" id="ContentPlaceHolder1_btnform">
<input border="0" type="image" style="height:36px;width:97px;" src="../style/images/btn_gonder.png" alt="Gönder" id="ContentPlaceHolder1_ImageButton1" name="ctl00$ContentPlaceHolder1$ImageButton1"></div>
CSS區
.select_container .btn_gonder {
float: left;
height: 36px;
text-align: right;
width: 304px;
}
HTML AREA
<div class="btn_gonder" id="ContentPlaceHolder1_btnform">
<input border="0" type="image" style="height:36px;width:97px;" src="../style/images/btn_gonder.png" alt="Gönder" id="ContentPlaceHolder1_ImageButton1" name="ctl00$ContentPlaceHolder1$ImageButton1"></div>
我的代碼
我寫了這個代碼但它不工作... 我如何更改文本與Greasemonkey對齊?
<script>
window.onload=allign;
function allign(){
document.getElementById('ContentPlaceHolder1_btnform').style.text-align='left';
}
</script>
是的,它的工作。謝謝。 – hcttepe 2012-02-06 23:48:15
不客氣,樂意效勞!如果這樣做對你來說,請[標記這個問題的答案](http://meta.stackexchange.com/questions/5234/how-does-accepting-an-answer-work/5235#5235)。 – 2012-02-06 23:54:54
對不起,我在這裏新,所以我不知道規則:)再次。 – hcttepe 2012-02-06 23:57:50