₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,290 members, 8,449,586 topics. Date: Wednesday, 22 July 2026 at 04:36 AM

Toggle theme

Software202's Posts

Nairaland ForumSoftware202's ProfileSoftware202's Posts

1 2 3 4 5 6 7 8 ... 22 23 24 25 26 27 (of 27 pages)

CareerRe: How I Got Belittled By My Boss... by Software202(m): 6:25pm On Nov 12, 2015
owk
CelebritiesRe: I May Work With D’banj – Don Jazzy by Software202(m): 9:54am On Nov 12, 2015
good
PoliticsRe: Twitter User Takes Shot At Ben Bruce, Calls Him "An Unfortunate Man" by Software202(m): 10:46pm On Nov 11, 2015
?
ProgrammingRe: Lets Learn C# Here!(study Group For Beginners) by Software202(m): 12:02am On Nov 11, 2015
k
ProgrammingRe: Android Developers Needed by Software202(m): 12:01am On Nov 11, 2015
K
ProgrammingRe: I Want To Learn Programming. Which Language Should I Start With? by Software202(m): 12:00am On Nov 11, 2015
Html, Css, JavaScript
ProgrammingRe: Are Nigerian Developers Crippled From Selling Apps Online? by Software202(m): 11:58pm On Nov 10, 2015
hmmm
CelebritiesRe: Seyi Shay Now Pepsi Ambassador (pictured) by Software202(m): 11:56pm On Nov 10, 2015
good one
FamilyRe: Nigerians, We’ve Got A Sexuality Problem by Software202(m): 11:18pm On Nov 10, 2015
really?
CelebritiesRe: Joseph Benjamin Celebrates His 40th Birthday by Software202(m): 3:03pm On Nov 09, 2015
Okay
CelebritiesRe: Joseph Benjamin Celebrates His 40th Birthday by Software202(m): 2:55pm On Nov 09, 2015
ok
WebmastersRe: Let's Learn PHP by Software202(op): 2:44pm On Nov 09, 2015
Now, let's start with: What is PHP?
PHP stands for "PHP: Hypertext Processor"... PHP is a server scripting language for a webpage. With PHP you can create dynamic websites like Facebook, Yahoo, Twitter and so on. IF ONLY YOU PAY ATTENTION.
- What Can PHP do?
PHP can be used to validate HTML forms.
- PHP can be used query the database.
- PHP can be used to send emails and other useful information.
And so on...

More shares if you want me to continue.
WebmastersLet's Learn PHP by Software202(op):
Hello my fellow web developers; I am Erisan Olasheni from Lagos.
What brought me here is that I discovered many Nigerian web developers are having problems with programming codes from scratch. Because of this, I am ready to take PHP here in Nairaland for free and at the end of this tutorial, all of us will be able to program PHP from scratch for any task we want to carry out.
All I need from you before the start of this tutorial is 50 likes and 50 shares...
Am hoping....
If you need any enquiry contact me with: +2349094587121; cgi.helpcentre@gmail.com
CelebritiesRe: Comedian Bovi Shares Photo With Policemen With Hilarious Caption by Software202(m): 12:30pm On Nov 09, 2015
lol
WebmastersRe: Learn Web Design LIVE On Nairaland!!! by Software202(m): 12:29pm On Nov 09, 2015
good one
WebmastersRe: Learn Web Design LIVE On Nairaland!!! by Software202(m): 12:18pm On Nov 09, 2015
alright
WebmastersRe: Learn Bulk SMS Business Here On Nairaland by Software202(m): 12:16pm On Nov 09, 2015
ok
WebmastersRe: Joomla FREE Training On Nairaland Live!!! by Software202(m): 12:15pm On Nov 09, 2015
alright
PoliticsRe: Biafra Protest Rages In South East, Group Vows To Shut Down Aba on Monday - SUN by Software202(m): 10:21pm On Nov 08, 2015
K
PoliticsRe: President Buhari To Inaugurate His Cabinet On Wednesday By 10 AM by Software202(m): 10:20pm On Nov 08, 2015
alright
Christianity EtcRe: Photo: Apc Church Now In Aba by Software202(m): 7:18am On Nov 08, 2015
ok
PoliticsRe: Buhari Moves To Block Influx Of Foreign Construction Workers Into Nigeria by Software202(m): 10:46pm On Nov 06, 2015
k
PoliticsRe: No Confirmation Of Amaechi Unless We Treat Anyanwu Report, PDP Senators by Software202(m): 2:33pm On Oct 29, 2015
really?
TravelRe: Accident Involving 2 Containers On Oshodi Bridge by Software202(m): 2:19pm On Oct 29, 2015
undecided
PoliticsRe: Senate To Confirm Amaechi, 17 Other Remaining Ministerial Nominees Today by Software202(m): 10:51am On Oct 29, 2015
k
WebmastersCSS :: Create A Box Shadow In Different Dimensions by Software202(op): 10:34am On Oct 29, 2015
Have you been seeing shadow round some boxes like HTML text field or even buttons or divs? OK, don't worry. After this tutorial: You will also become an expert 'HTML Box Shadow Maker!'.


*Note: This feature is supported from CSS 3, as it will only work on modern browsers. Are you afraidhuh - Almost all browsers are modern! (lol)



A BASIC SHADOW CODE


.shadow {

box-shadow: 2px 2px 4px 5px #000;

-o-box-shadow: 2px 2px 4px 5px #000;

-moz-box-shadow: 2px 2px 4px 5px #000;

-webkit-box-shadow: 2px 2px 4px 5px #000;

}




Explaination


1. The horizontal offset of the shadow, positive means the shadow will be on the right of the box.
- A negative offset will put the shadow on the left of the box.
2. The vertical offset of the shadow: - a positive one means the shadow will be below the box and a negative one means the box-shadow will be above the box.
3. The blur radius (optional), if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be.
4. The spread radius (optional), positive values increase the size of the shadow, negative values decrease the size. Default is 0 (the shadow is same size as blur).
5. Color

INNER SHADOW CODE


.shadowbox {

-moz-box-shadow: 0 0 5px #000 inset;

-webkit-box-shadow: 0 0 5px #000 inset;

box-shadow: 0 0 5px #000 inset;

}



FOR INTERNET EXPLORER

To make this possible in Microsoft Internet Explorer, you have to add some extra elements:
HTML for IE

<div class="ie-shadow">

<div class="target-content">

This is the element with the box shadow.

</div>

</div>



CSS for IE


.ie-shadow {

margin: 30px;

background-color: rgb(68,68,68); /* Needed for IEs */

box-shadow: 5px 5px 5px rgba(68,68,68,0.6);

-moz-box-shadow: 5px 5px 5px rgba(68,68,68,0.6);

-webkit-box-shadow: 5px 5px 5px rgba(68,68,68,0.6);



filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30);

-ms-filter: "progid:DXImageTransform.Microsoft.Blur(PixelRadius=3,MakeShadow=true,ShadowOpacity=0.30)";

zoom: 1;

}

.ie-shadow .target-content {

position: relative; /* This protects the inner element from being blurred */

padding: 70px;

background-color: #DDD;

}


* For more posts and updates about web development and other programming related projects click on the link in the signature below, more shares and likes if you love it.
CelebritiesRe: Photos From Lilian Esoro's Bridal Shower by Software202(m): 10:28am On Oct 29, 2015
wao!
PoliticsRe: Buhari Presented With Gift Of His Portrait In India (Photo) by Software202(m): 4:39pm On Oct 28, 2015
good one!..

1 2 3 4 5 6 7 8 ... 22 23 24 25 26 27 (of 27 pages)