A la xarxa
- 2017: a year in mis- and disinformation. Col·lecció d'articles de First Draft
- Álvaro, S. Noticias falsas: compartir es curar. CCCBLAB (7/3/2017) . Sobre les formes de lluitar contra les notícies falses
- Burdeos, J. Per què la veritat fa mandra o de Kant a Trump. Núvol. (9/03/2017)
- Buzz, C. The $100 million content farm that's killing the Internet. Motherboard (10/7/2015)
- Gray, R. Lies, propaganda and fake news: a challenge of our age. BBC (1/3/2017)
- Hackwill R. Everything you always wanted to know about fake news but were afraid to google. Euronews(24/1/2017)
- Hinojo. A. Hacia una nueva ética informativa. CCCBLAB (16/1/2018)
- Lara, T. Jugar a periodistas. TISCAR - Comunicación y Educación Digital (23/1/2018)
- Pérez, S. Emily Bell: «Cal més pensament crític perquè no ens colin propaganda i desinformació». Nació digital. (31/12/2017)
- Predators of press freedom use fake news as a censorship tool. Reporters Without Borders (16/3/2017)
- Radsch, C. Deciding who decides which news is fake. Committee to Protect Journalists (14/3/2017)
- Wardle, C.Noticias falsas. Es complicado. First Draft. (14/3/2017)
The margin property sets or returns the margins of an element.
This property can take from one to four values:
- One value, like: div {margin: 50px} - all four margins will be 50px
- Two values, like: div {margin: 50px 10px} - the top and bottom margins will be 50px, left and right margins will be 10px
- Three values, like: div {margin: 50px 10px 20px}- the top margin will be 50px, left and right margin will be 10px, bottom margin will be 20px
- Four values, like: div {margin: 50px 10px 20px 30px} - the top margin will be 50px, right margin will be 10px, bottom margin will be 20px, left margin will be 30px
Both the margin property and the padding property insert space around an element. However, the difference is that margin inserts the space around the border, while padding inserts the space within the border of an element.