Both @mixin and @extend seem to have the same goal:
Add a block of default code for a class.
But if they have this same purpose, what is the difference between them? And when should I use one or the other?
I'm trying to create a list with 5 blocks, 4 230X140px and 1 of 250X280px, but they are not aligned side-by-side correctly, they look like this:
Iwouldlikeittolooklikethis:
codes:
HTML
<ul>
<li class="tile-high">0</...
I'm studying responsive layout and I already know that to create a flexible part you need to use relative measure like In and%. But I still can not understand what the real difference between one and another ...
... and if it is possible to a...
I have a form with the following HTML:
<div class="cont960 trabalheConosco">
<form>
<input type="text" placeholder="nome*" />
<input type="text" placeholder="e-mail*" />
<input type="tex...
I'm trying to leave three images per line on a page, set this in the body of the page:
<div class="produtos-ponta">
<div class="produtos-conteudo-ponta one-fourth-ponta"><img class="photo" src="imagens-ponta/amster...
I was looking at a class of a Wordpress template and saw that it created an image of a facebook logo using CSS content with a string of characters.
The snippet that generates the image is as follows:
.cmsms-icon-facebook-circled-1:before {...
I'm trying to run my project with a background image as follows:
The image is in the path:
webapp / resources / libimagens / bg.png
The CSS file is in the path:
webapp / resources / libcss / style.css
Within the body{} tag...
I have a table and would like to remove the spaces between the borders! How can I do this?
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title&...
I need to put two selects within the same div , one aligned to the left, and the other to the right.
I've tried using CSS to create a class to apply to every select , but it did not work:
select.left {
text-align: left;...