如果我使用jquery循环,我无法将文本居中,请帮助!
<!-- Cycle Script -->
<script type="text/javascript">
$(document).ready(function() {
$("#text").cycle({
fx: 'fade',
pause: 1
});
});
</script>
<style>
#price2 {
text-align:center;
width: 965;
height:36px;
}
</style>
<div id="text">
<p>text 1</p>
<p>text 2</p>
<p>text 3</p>
</div>
答案 0 :(得分:1)
为p标签指定宽度,如下所示:
#text {
text-align:center;
height:36px;
}
p {
width: 965px;
}