Web design & 😃 development – Telegram
Web design & 😃 development
29.2K subscribers
787 photos
35 videos
88 files
825 links
Admin👮 @sreetamo @Tranjar

Get free resources for webdevelopment , html , CSS , JavaScript , reactjs , wordpress , Php , nodejs ...etc. Buy ads: https://telega.io/c/WebsiteDesignLearningGroup
👥Group👥 @website_DesignLearning_Group
Download Telegram
Suppose we want to arrange five numbers of DIVs so that DIV4 is placed above DIV1 . Now, which CSS property will we use to control the other of stack?
Anonymous Quiz
19%
d- index
13%
s- index
14%
x-index
54%
z- index
If we don't want to allow a floating div to the left side of an element, which CSS property will we use?
Anonymous Quiz
25%
Margin
31%
Clear
29%
Float
14%
Padding
How will you make all paragraph elements 'RED' in Color?
Anonymous Quiz
10%
p.all { Color: red; }
7%
p.all { Color: #990000; }
5%
all.p { Color: #998877; }
77%
p { Color: red ; }
By default hyperlinks are displayed with underline from all hyperlinks by using CSS code?
Anonymous Quiz
10%
a { text : no- underline; }
7%
a { text-decoration: no; }
14%
a { text-decoration : no- underline; }
69%
a { text-decoration: none; }
In css, it is not possible to specify different padding for different sides,
Anonymous Quiz
40%
True
60%
False
Which of the following is not a valid CSS selector
Anonymous Quiz
16%
Id
37%
Tag
27%
Title
20%
Head
How do you select all p elements inside a div element?
Anonymous Quiz
30%
div . P
19%
div + p
51%
div p
How do you make each word in a text start with a capital letter?
Anonymous Quiz
11%
You can't
19%
transform: capitalize
70%
text-transform: capitalize
What is the value of 1 vmax if viewport is 1000px wide and 800px high
Anonymous Quiz
26%
80px
19%
10px
21%
8px
34%
100px
Initial value for background-attachment CSS property
Anonymous Quiz
40%
inherit
5%
Local
18%
Scroll
37%
Fixed
Which CSS property is not animatable?
Anonymous Quiz
35%
Display
24%
Font size
18%
Width
23%
Opacity
Which one is valid for box-sizing CSS property
Anonymous Quiz
53%
Content - box
28%
Display - box
19%
inline - box
Thought you might enjoy this course on @Udemy: Complete Responsive Web Development: 4 courses in 1
https://www.udemy.com/share/101qEMAEIcc11RRn8B/
Coupon 👉WEB4IN1NOV2020
🔥🔥🔥
!!!!!! Coupon expires in 10hr !!!!!!
Predict the output of the following JavaScript code.

<noscript type="text/javanoscript"> a = 8 + "8"; document.write(a); </noscript>
Anonymous Quiz
25%
16
21%
Compilation Error
44%
88
9%
Run Time Error
Predict the output of the following JavaScript code.

<noscript type="text/javanoscript" language="javanoscript">    var x=5; var y=6; var res=eval("x*y"); document.write(res);    </noscript>
Anonymous Quiz
29%
“30”
29%
30
25%
 5*6
18%
“5*6”
The external JavaScript file must contain <noscript> tag. True or False?
Anonymous Quiz
55%
True
45%
False
How can you detect the client's browser name?
Anonymous Quiz
34%
client.navName
19%
navigator.appName  
const result = Number("") + 1;
Anonymous Quiz
40%
1
26%
NAN
25%
Undefined
9%
0