I'm not much of a programmer, I can't even really make anything fairly decent in Scratch. Although, I do know a bit of HTML and barely css.
Though I can't use my knowledge to make some kind of professional website, I could use it on a forum that involves using HTML instead of BBCode.
Last edited by ProgrammingPro01 (2013-02-25 01:17:23)
Offline
I prefer to keep my list short, but sweet:
C / Visual C++ (slightly not-good-yet at the ++ variant)
Python
JS
PHP (also HTML, CSS, but those apparently don't count)
Scratch
Offline
ProgrammingPro01 wrote:
I'm not much of a programmer, I can't even really make anything fairly decent in Scratch. Although, I do know a bit of HTML and barely css.
Though I can't use my knowledge to make some kind of professional website, I could use it on a forum that involves using HTML instead of BBCode.
Not much of a programming pro, are you?
Offline
Harakou wrote:
ProgrammingPro01 wrote:
I'm not much of a programmer, I can't even really make anything fairly decent in Scratch. Although, I do know a bit of HTML and barely css.
Though I can't use my knowledge to make some kind of professional website, I could use it on a forum that involves using HTML instead of BBCode.Not much of a programming pro, are you?
Very PUNNY xD
And I am:
"ProgrammingNoShow01"
Last edited by mythbusteranimator (2013-02-25 13:02:40)
Offline
uh so coders' shed is down so i'll ask here
in html does putting style="" override css in all browsers? for example if you have
.div{
background-color: #FFFFFF;
}
and then you make a div like this
<div class="div" style="background-color: #000000;">
will the bg colour always be #000000? i know that in chrome then the style attribute overrides what was defined in the css, but is it browser-specific whether it will do that? or do all browsers do that?
thanks
Offline
RedRocker227 wrote:
uh so coders' shed is down so i'll ask here
in html does putting style="" override css in all browsers? for example if you have
.div{
background-color: #FFFFFF;
}
and then you make a div like this
<div class="div" style="background-color: #000000;">
will the bg colour always be #000000? i know that in chrome then the style attribute overrides what was defined in the css, but is it browser-specific whether it will do that? or do all browsers do that?
thanks
Unless you use !important, inline styles will override embedded/external stylesheets.
Offline
catachresis wrote:
RedRocker227 wrote:
uh so coders' shed is down so i'll ask here
in html does putting style="" override css in all browsers? for example if you have
.div{
background-color: #FFFFFF;
}
and then you make a div like this
<div class="div" style="background-color: #000000;">
will the bg colour always be #000000? i know that in chrome then the style attribute overrides what was defined in the css, but is it browser-specific whether it will do that? or do all browsers do that?
thanksUnless you use !important, inline styles will override embedded/external stylesheets.
good
thank you
Offline