How to create cross symbol using CSS?

Is there any option to create a Christian cross symbol USING HTMLand CSS?

+4
source share
7 answers
†

†

USE This html Entities to create Cross

-1
source

Below is a list of the various Cross characters and their HTML code.

Eastern Christian Cross ☦ Chi Rho Cross ☧Patriarchal Cross ☨Greek Cross ☩Greek Cross heavy ✚Greek Cross outline ✙    Saltire, St.Andrews Cross ☓Latin Roman Cross ✝Latin Cross 3D shadow ✞Latin Cross outline ✟

You can use them in HTML or CSS.

see the following link for more information http://www.sabinanore.com/design/web-design/html-special-symbols/

+6
source

cross,

Entity Name  † †  
Decimal Number † † 
HexNumber † †
+1

:

✝ -> ✝

✞ -> ✞

HTML : http://www.danshort.com/HTMLentities/?w=dingb

0
0
source

http://jsfiddle.net/billymoon/tRG72/

HTML

<div id="horizontal"></div>
<div id="vertical"></div>

CSS

#horizontal{
    width: 100px;
    height: 10px;
    background-color: goldenrod;
    top: 60px;
    left: 10px;
    position: absolute;
}
#vertical{
    width: 10px;
    height: 180px;
    background-color: goldenrod;
    top: 10px;
    left: 55px;
    position: absolute;
}
0
source

All Articles