I need to get a title with gradient and a stroke of 3px. I don't care if it is with png or not. I need cross Browser.
Code:
.title {
text-align: center;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
padding-left: 40px;
font-size: 25px;
color: #FFF;
font-weight: bold;
text-transform: uppercase;
/*
This code gives me the gradient but only in Safari & Chrome. I need IE & Firefox to.
background: -webkit-gradient(linear, left top, left bottom, from(#ffcc02), to(#fffe42));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;*/
}
Also i need to add a stroke. but outside no inside. Or if its inside which will be my new font-size?