目前我有這樣的:如何在兩個按鈕中插入一個元素?
<a href="" class="left">Get your prize</a>
<a href="" class="right">Live preview it</a>
這:
a { display: block; float:left; padding:10px 30px; font-size:12px; color: white; text-decoration:none;}
.left { border-radius: 20px 0 0 20px; background:lightgreen; }
.right { border-radius: 0 20px 20px 0; background:darkgreen; }
a:hover { background:red;}
這裏的的jsfiddle:http://jsfiddle.net/uKTFk/
這裏是我的目標:http://i.imgur.com/AwLfn.png < <到cirlce將用 「或」 文本兩個中間。
當然,jsFiddle還沒有正確的樣式,我會在兩個'按鈕'之間用「或」圓圈解決問題時繼續。
幫助?
奇妙的,它的工作就像魅力。我認爲我正在過分藐視這個簡單的解決方案。非常感謝! –
請記住使用跨瀏覽器支持css3邊框半徑以避免醜陋:'-moz-border-radius'&'-webkit-border-radius'&'border-radius' –