How to modify the css

If i understood your problem you want start everything from Right to Left use like this <body dir=”rtl”>. or use to move specific content from Right to Left. .main-content { direction: rtl; /* Right to Left */ } UPDATE: As per our discussion you want to move one box move to right so as there … Read more

How would I achieve a shadow that won’t show through transparent text?

* { box-sizing: border-box; font-family: inherit; } html { font-size: 62.25%; } body { font-family: sans-serif; font-size: 1.6rem; background: linear-gradient(to right, rgb(0, 128, 111), rgb(199, 189, 57)); } h1 { background: transparent; color: transparent; font-family: sans-serif; font-size: 50px; font-weight: bold; text-shadow: 3px 3px 0 rgb(54, 54, 54); -webkit-text-fill-color: transparent; -webkit-text-stroke-width: 2px; -webkit-text-stroke-color: rgb(0, 0, 0); … Read more

Can I achieve underline and circle with css?

You want to have this freehand drawing effect right? with css you can only make exact shapes that are not as handmade. this effect you can do in two ways: -Use images as background in the case of the circle and as image (<img>) in the case of the underline -Using canvas, is an extensive … Read more

How to make attractive button using CSS

Some of your code would be better. But you can just use a gradient generator, with the right colors, like this one. So you could have something like : background: #3dbeb2; background: -moz-linear-gradient(left, #3dbeb2 0%, #02b5d1 100%); background: -webkit-linear-gradient(left, #3dbeb2 0%,#02b5d1 100%); background: linear-gradient(to right, #3dbeb2 0%,#02b5d1 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr=”#3dbeb2″, endColorstr=”#02b5d1″,GradientType=1 ); Edit : … Read more

How to create a pure css slideshow? [closed]

How about this Fiddle #container{ background:green; width:300px; height:300px; overflow:hidden; } .img{ -webkit-animation:up 20s infinite; } .img{ height:300px; } @-webkit-keyframes up{ 0%{transform:translate(0,0)} 20%{transform:translate(0,-300px)} 40%{transform:translate(0,-600px)} 60%{transform:translate(0,-900px)} 80%{transform:translate(0,-1200px)} 100%{transform:translate(0,-1500px)} } <div id=”container”> <div class=”img “> <img src=”http://placekitten.com/300/301”> </div> <div class=”img “> <img src=”http://placekitten.com/300/302”> </div> <div class=”img “> <img src=”http://placekitten.com/300/303”> </div> <div class=”img “> <img src=”http://placekitten.com/300/304”> </div> <div class=”img … Read more