CSS Tutorial for Beginners - 14 - Using inline style

preview_player
Показать описание
In this video we take a look at inline style.
Рекомендации по теме
Комментарии
Автор

you are very professional good job, I'll definitely will recommend this channel to my colleagues.

hamiltec
Автор

This guy got Bucky's teaching skills with Derek's voice

patrasculucian
Автор

You explained this better than my professor lmao

farrahhalid
Автор

Can i have full video? because i see there are almost 50 seperate videos. :( your video so helpful ! i like

zulfahusna
Автор

I m from India, very nic video very well explained

abhisheksharma
Автор

can I use "display: inline" for this method?

aaronrose
Автор

When I tried to link my internal style sheet to the same name as the CSS file, for some reason it did not change the styling at all and I don’t know what I did wrong. When I put the styling inside that HTML file itself, it’ll change it some.

revaclay
Автор

Can i use internal, external style sheet and inline style at the same time

farrahhalid
Автор

What’s the difference between internal style sheet and Inline Style tho ??

farrahhalid
Автор

question! mr.ej... when should we use the inline style css?.
html alone can modify or stlyle (html codes)by line without using css for the first place?!

Project-benc
Автор

Is there an order of precedence such as External, Internal, Inline? Or would a conflict between, say, an External style and an Inline style cause an error?

RichardWheeler-SE-BA-PM
Автор

I have another question.  I am learning all these codes and rules, but I don't think I can store and recall all of them.  I need to find a CSS code list that has the codes in an easier that the one the professor gave me.

tammyjolly
Автор

This is a difficult way to embed CSS into HTML, It's easier to use external or internal style sheets

Jayanth
Автор

hi, my inline text have italic font, why? i write like you
Thank you

futpaluna
Автор

Hello, I have the same question like another user in the comments.My inline text also has italic font.How to solve it?
This is my code.
[index]:
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>

<body>
<h1> The Fish Web Site </h1>
<p class="para1"> Welcome to the Fish Web Site.Everything you want to know about fish is in this web site. </p>
<h2> This is a section on Bass fish </h2>
<p class="para2"> Bass fish live in lakes.The word for fish in Latin is <i>Pisces<i>. </p>
<p class="para3"> This is slanted text. </p>
<p This is inline text. </p>
</body>

[stylesheet]
body {
color: green;
font-family: Verdana;Arial;Geneva;Arial Black;
font-weight: normal;
background-color: #ffcf79;
}
h1, h2 {
text-decoration: underline;
}


p.para1 {
color: blue;
font-size: 25px;
}
p.para2 {
color: purple;
font-size: 25px;
}
p.para3 {
color: purple;
font-size: 25px;
font-style: italic;
}

snowchang