- Make use of
display
andposition
properties
-
What is the
display
property?-
Allows you to adjust how the elements are placed on the web page
-
Some most commonly used values:
-
const favSingers = [
"Yuna",
"Britney Spears",
"Backsteet Boys",
"Spice Girls",
"Meatloaf"
];
INSERT INTO voters
VALUES(
5001, 'Jon', 'Rain', 'male', 'democrat', '3', 24, 0, 0, 0, 0, DATETIME('now'), DATETIME('now')
);
INSERT INTO voters
sqlite> SELECT COUNT(id) FROM votes WHERE politician_id = 524;
23
sqlite> SELECT COUNT(votes.id) FROM votes JOIN congress_members
...> ON votes.politician_id = congress_members.id
...> WHERE congress_members.name = 'Sen. Olympia Snowe';