/* sample solution to style.css */ div{ margin: 15px; } span{ border: 1px solid #f00; } #one{ border: 1px solid #000; } #two{ border: 1px dotted #555; } #three{ border: 1px dashed #ccc; }
Quotes help make search much faster. Example: "Practice Makes Perfect"
Friday, December 14, 2012
Codecademy Sample Solution: Codeyear Margin of Error
/* sample solution to style.css */ div{ margin: 15px; } span{ border: 1px solid #f00; } #one{ border: 1px solid #000; } #two{ border: 1px dotted #555; } #three{ border: 1px dashed #ccc; }
Labels:
Codecademy,
Codeyear,
CSS
Subscribe to:
Post Comments (Atom)
This is an example of scrolling text using Javascript.
Popular Posts
-
class Dog{ int age; public Dog(int dogsAge){ age = dogsAge; } public void bark() { System.out.println("Woof...
-
<!-- sample solutions to Welcome to HTML! --> <h1>Bruce Wayne</h1> <!-- sample solutions to Speak in Paragraphs --> ...
-
// Sample Solution using System; namespace DocumentationHunt { class Program { static void Main(string[] args) { ...
-
#sample solution def run(bottle): #your code here bottle.drink(250) bottle.refill(150) return bottle.amount_left cl...
-
//sample solution // Here is the array we will store results in var multiples = []; function multiplesOf(base, i) { // Base case ...
-
#sample solution def factorial(x): x = abs(x) #prevents error on negative numbers product = 1 for i in range(x): product = prod...
-
<style> p { font-family: sans-serif; font-size:18px;} div#welcome p{ font-family: cursive; font-size: 24px; color: white; b...
-
//Sample solution to script.js $('document').ready(function() { $('#emptyTrash').click(function() { //remove the elemen...
-
//sample solution function isCaseInsensitivePalindrome(inputString) { var temp = inputString.toLowerCase(); var tempReversed = te...
-
// Sample Solution using System; namespace ComparisonOperators { class Program { static void Main(string[] args) { ...
No comments:
Post a Comment