0% found this document useful (0 votes)
53 views1 page

Font Css Kutija Popisi: Gornja Margina

The document discusses various CSS properties including font properties, box properties (margin, padding, border), list properties, positioning properties, text properties, and other miscellaneous properties. It provides examples of property values and order of dimensions, colors, and backgrounds. It also covers linking CSS to HTML documents, commenting in CSS, and common CSS syntax.

Uploaded by

mzulje
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
53 views1 page

Font Css Kutija Popisi: Gornja Margina

The document discusses various CSS properties including font properties, box properties (margin, padding, border), list properties, positioning properties, text properties, and other miscellaneous properties. It provides examples of property values and order of dimensions, colors, and backgrounds. It also covers linking CSS to HTML documents, commenting in CSS, and common CSS syntax.

Uploaded by

mzulje
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

font svojstvo font-family primjeri vrijednosti Arial, Helvetica, sans-serif "Times New Roman", Times, serif italic, normal,

oblique normal, small-caps 100, 200, 900, bold, normal, lighter 12px, 12pt, 1em, 150% bold 12pt Helvetica,sans-serif

css kutija svojstvo margin-top margin-right margin-bottom margin-left margin padding-top padding-right padding-bottom padding-left padding border-top-width border-right-width border-bottom-width border-left-width border-width primjeri vrijednosti 5px, 0.2em 5px, 0.2em 5px, 0.2em 5px, 0.2em 5px, 0.2em 15px, 0.5em 15px, 0.5em 15px, 0.5em 15px, 0.5em 15px, 0.5em 1px, 0.1em 1px, 0.1em 1px, 0.1em 1px, 0.1em 1px, 0.1em red, #ff0000, #f00 dashed, dotted, none, solid 2px solid #000 1px solid #f00 2px dashed #00f 3px dotted #0f0 2px dotted #000 165px, 50% 200px, 80% left, right, none left, right, both

popisi svojstvo list-style-type list-style-image list-style-position list-style primjeri vrijednosti circle, decimal, disc, none, sqaure url("bullet3.gif") inherit, inside, outside square url("bullet3.gif") outer

font-style font-variant font-weight

font-size font

pozicioniranje svojstvo position left top z-index primjeri vrijednosti absolute, relative, static, fixed 20px, 10pt, 2% 20px, 10pt, 2% 2

tekst svojstvo letter-spacing line-height text-decoration primjeri vrijednosti inherit, normal, 5px, 0.5em inherit, normal blink, inherit, none, line-through, underline none, capitalize, lowercase, uppercase center, justify, left, right 20px, 3em

border-color border-style border-top border-right border-bottom border-left border width height float clear

ostalo svojstvo cursor overflow visibility display primjeri vrijednosti croshair, move, help, pointer auto, hidden, scroll, visible collapse, hidden, visible block, compact, inline, table, none

text-transform

text-align text-indent

redoslijed navoenja dimenzija boje i pozadine svojstvo color background-color backgroundimage backgroundrepeat backgroundattachment backgroundposition background primjeri vrijednosti lime, #00ff00, #0f0 lime, #00ff00, #0f0 url("pozadina.gif") no-repeat, repeat, repeat-x, repeat-y fixed, scroll bottom, center, top / left, center, right white url(pozadina.gif) fixed top center jedinice mjere px em % in cm mm pt pixel veliina znakova potrijebljenog fonta postotak in centimetar milimetar point (1pt=1/72in) 0 ne zahtijeva jedinicu mjere #789abc
desni odmak padding-right desna margina margin-right desna granica border-right

pri uporabi jednog atributa za sve etiri strane kutije (margin, padding, border): margin: 6px 0 3px 0

povezivanje css-a s web stranicom povezivanje s vanjskim dokumentom <head> ... <link rel="stylesheet" type="text/css" href="stil.css"> ... </head> <head> ... <style type="text/css"> @import "/css/stil1.css"; @import </style> ... </head> <head> ... <style type="text/css"> .stil { color:#CC0000; font-size:24px; font-weight:bold; } </style> ... </head> <p style="font-size:10px"> ...tekst... </p>

uvoz vanjskog dokumenta

lijeva margina margin-left

lijeva granica border-left

lijevi odmak padding-left

gornja margina margin-top gornja granica border-top gornji odmak padding-top sadraj content donji odmak padding-bottom donja granica border-bottom donja margina margin-bottom

umetanje u zaglavlje dokumenta

RGB heksadecimalni zapis boje #aaccff RGB dekadski zapis boje

#acf rgb(0,25,50)

sintaksa /* komentar */ selektor { svojstvo: vrijednost; }

dodavanje u liniju atributom style

Online teaj Osnove CSS-a

You might also like