Hello Programming
Would you like to react to this message? Create an account in a few clicks or log in to continue.

CSS Outline

+5
EzequielGo
Athena
JasonOmeter
jennielym
Admin
9 posters

Page 2 of 2 Previous  1, 2

Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Admin Sat Oct 14, 2017 1:32 pm

Athena wrote:Can a value like asterisk be appliead? i mean it can also be a design for outline right? but can it be read as value?

Accoring to my research, * (asterisk) is a CSS selector. The * selector selects all elements and can also select all elements inside another element.

Admin
Admin

Posts : 28
Join date : 2017-09-15

http://kaylajem.forumotion.asia

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Admin Sat Oct 14, 2017 1:39 pm

JasonOmeter wrote:Good Afternoon M'am Kayla,
does the outline have a property of outline radius?

As far as I know outline don't have a radius property but I guess you should try the border-radius property. With the border-radius property, you can give any element "rounded corners".

Admin
Admin

Posts : 28
Join date : 2017-09-15

http://kaylajem.forumotion.asia

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by EzequielGo Sat Oct 14, 2017 2:01 pm

What is the difference between css outline and css border?

EzequielGo
Master
Master

Posts : 13
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by SarahMae Sat Oct 14, 2017 2:12 pm

Since you knew about CSS. I have a question why is it the css text shadow property does not work on my web?

SarahMae
Master
Master

Posts : 9
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Admin Sat Oct 14, 2017 2:31 pm

EzequielGo wrote:What is the difference between css outline and css border?

The CSS border properties allow you to specify the style and color of an element's border while an outline is a line that is drawn around elements (outside the borders) to make the element "stand out".

Admin
Admin

Posts : 28
Join date : 2017-09-15

http://kaylajem.forumotion.asia

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Admin Sat Oct 14, 2017 2:33 pm

SarahMae wrote:Since you knew about CSS. I have a question why is it the css text shadow property does not work on my web?

What is your code in CSS text-shadow?

Admin
Admin

Posts : 28
Join date : 2017-09-15

http://kaylajem.forumotion.asia

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by joshuaB Sat Oct 14, 2017 3:00 pm

Difference between CSS outline and border. aside from CSs outline is drawn around outside the borders..

joshuaB
Newbie
Newbie

Posts : 1
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Admin Sat Oct 14, 2017 4:10 pm

joshuaB wrote:Difference between CSS outline and border. aside from CSs outline is drawn around outside the borders..

In addition to some other answers... here are a few more differences I can think of:

First, border supports rounded corners with the border-radius property and outline doesn't
Second, border has properties to style each side with border-top:, border-left: etc. outline can't do this. There's no outline-top: etc.
Lastly, outline supports offset with the property outline-offset while border doesn't.

I hope this can help's you Smile

Admin
Admin

Posts : 28
Join date : 2017-09-15

http://kaylajem.forumotion.asia

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by SarahMae Sat Oct 14, 2017 4:18 pm

Admin wrote:
SarahMae wrote:Since you knew about CSS. I have a question why is it the css text shadow property does not work on my web?

What is your code in CSS text-shadow?

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
text-shadow: 3px 2px lightgreen;
}
</style>
</head>
<body>

<h1>Sarah Mae</h1>

</body>
</html>

SarahMae
Master
Master

Posts : 9
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by EzequielGo Sat Oct 14, 2017 4:43 pm

SarahMae wrote:
Admin wrote:
SarahMae wrote:Since you knew about CSS. I have a question why is it the css text shadow property does not work on my web?

What is your code in CSS text-shadow?

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
   text-shadow: 3px 2px lightgreen;
}
</style>
</head>
<body>

<h1>Sarah Mae</h1>

</body>
</html>

I have try your code it is working on my web.

CSS Outline - Page 2 Captur10

EzequielGo
Master
Master

Posts : 13
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Rtagudin Sat Oct 14, 2017 6:04 pm

What is the essence of using css outline?

Rtagudin
Newbie
Newbie

Posts : 2
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Clyntt Sat Oct 14, 2017 7:29 pm

SarahMae wrote:
Admin wrote:
SarahMae wrote:Since you knew about CSS. I have a question why is it the css text shadow property does not work on my web?

What is your code in CSS text-shadow?

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
   text-shadow: 3px 2px lightgreen;
}
</style>
</head>
<body>

<h1>Sarah Mae</h1>

</body>
</html>

Note: Internet Explorer 9 and earlier do not support the text-shadow property. According to my research. Check first what is the version of your Internet Explorer.

Clyntt
Master
Master

Posts : 9
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Clyntt Sat Oct 14, 2017 7:41 pm

Rtagudin wrote:What is the essence of using css outline?

An outline is a line that is drawn around elements outside the borders. Therefore to make the element stand out we should use the CSS outline property.

Clyntt
Master
Master

Posts : 9
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by SarahMae Sat Oct 14, 2017 7:49 pm

Clyntt wrote:
SarahMae wrote:
Admin wrote:
SarahMae wrote:Since you knew about CSS. I have a question why is it the css text shadow property does not work on my web?

What is your code in CSS text-shadow?

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
   text-shadow: 3px 2px lightgreen;
}
</style>
</head>
<body>

<h1>Sarah Mae</h1>

</body>
</html>

Note: Internet Explorer 9 and earlier do not support the text-shadow property. According to my research. Check first what is the version of your Internet Explorer.

OMG! Shocked You're right Clyntt. My Internet Explorer is 8. Hmmm.

SarahMae
Master
Master

Posts : 9
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by SarahMae Sat Oct 14, 2017 7:50 pm

EzequielGo wrote:
SarahMae wrote:
Admin wrote:
SarahMae wrote:Since you knew about CSS. I have a question why is it the css text shadow property does not work on my web?

What is your code in CSS text-shadow?

<!DOCTYPE html>
<html>
<head>
<style>
h1 {
   text-shadow: 3px 2px lightgreen;
}
</style>
</head>
<body>

<h1>Sarah Mae</h1>

</body>
</html>

I have try your code it is working on my web.

CSS Outline - Page 2 Captur10

Wow. This is so cute. Rolling Eyes Can i have a copy of this pic?

SarahMae
Master
Master

Posts : 9
Join date : 2017-10-14

Back to top Go down

CSS Outline - Page 2 Empty Re: CSS Outline

Post by Sponsored content


Sponsored content


Back to top Go down

Page 2 of 2 Previous  1, 2

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum