What is the answer number 3/4Css ruler and selector? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 3

What is the answer number 3/4Css ruler and selector?

19th Aug 2018, 11:42 AM
Pro grammerā„¢
Pro grammerā„¢ - avatar
12 Respostas
+ 9
Module 3: Properties >> width and height 1. Fill in the blanks to set the height of the div to 50px, the width to 100px: div { border: none; width: 100px; height: 50px; } 2. Width and height are usually expressed in: Ans: pixels and percents 3. Set the minimum allowable width of the div to 200px: div { min- width: 200px; }
19th Aug 2018, 1:26 PM
Rameshwor Nepal
Rameshwor Nepal - avatar
+ 23
ok thanks
2nd Sep 2018, 1:24 PM
Pro grammerā„¢
Pro grammerā„¢ - avatar
+ 12
Module 1: The Basics >> CSS Rules and Selectors 1. In the rule, the "selector": Ans :selects which element to style 2. Rearrange the code to create a valid CSS style rule: p{ color: blue; } 3. Fill in the blanks to give yellow background color to the element with id="intro", and black text color to the class="mytext": #intro{ background-color: yellow; } .mytext{ color: black; } 4. Drag and drop from the options below to create a style rule for all paragraphs belonging to the element with id="test": #test p { color: red; }
19th Aug 2018, 1:31 PM
Rameshwor Nepal
Rameshwor Nepal - avatar
+ 3
Drag and drop from the options below to create a style rule for all paragraphs belonging to the element with id="test": Answer: #test p { color: red; } #p .test #test p
21st Nov 2020, 7:32 AM
Jason Chew
Jason Chew - avatar
+ 1
var e = $ ("<p></p>").text("Some text"); e. height (50); $(" #test ").before( e );
4th Dec 2020, 1:36 PM
El Maslohi Hassan
0
plz help
31st Dec 2019, 3:08 PM
Arjun Singhal
Arjun Singhal - avatar
0
var e = $ ("<p></p>").text("Some text"); e. height (50); $(" #test ").before( e );
4th Mar 2021, 1:00 PM
Cesar Aramayo
Cesar Aramayo - avatar
0
div { min-weidth : 200px ; }
2nd Jan 2022, 6:06 PM
Sihana
0
.demo p { color:red }
20th Feb 2023, 10:51 PM
Ngabirano divine Elisabeth
Ngabirano divine Elisabeth - avatar
- 1
Fill in the blanks to create a new <p> element, set its height to 50px and add it before the element with id="test". var e = ("<p></p>").text("Some text"); e. (50); $(" ").before( );
16th Jun 2020, 5:39 AM
Amanpreet Singh
Amanpreet Singh - avatar
- 1
$ height #test e
1st Jul 2020, 10:51 PM
Frederick John Suerte
Frederick John Suerte - avatar
- 1
Set the minimum allowable width of the div to 200px: div { width: 200px ; }
2nd Mar 2021, 1:54 PM
joseph
joseph - avatar