2014-01-08 75 views

回答

1

在你的CSS代碼補充一點:

.or{ 
    display: block; 
    width: 100%; 
    text-align: center; 
} 

demo

+0

謝謝你!像一個魅力工作 –

+0

@RyanSalmons:歡迎,並接受答案:) – Fox

+0

@RyanSalmons如果你對此感到滿意,那麼請接受答案 –

0

這裏比答案另一種方法,只是在案件。

HTML

<div class="container"> 
    <hr class="floatLeft splitHR" /> 
    <span class="floatLeft or"> OR </span> 
    <hr class="floatLeft splitHR" /> 
    <div style="clear:both;"></div> 
</div> 

CSS

.floatLeft { 
    float:left; 
} 
.splitHR { 
    width: 45%; 
} 
.or { 
    width: 9%; 
    text-align: center; 
} 
.container { 
    width:100%; 
}