0
Fill in the blanks to make the first letter of the paragraph red and bold. Also flip the paragraph outside down.
P{ Transform :rotate(180deg); } P::first-letter{ Color:red; :bold; }
4 ответов
+ 1
Fill in the blanks to define a class method called "sqr" for the Calc class and call it with the argument 8.
class Calc
def self.sqr x
x*x
end
end
puts Calc.sqr 8
+ 1
Fill in the blanks to include the object "x" in the output.
class X
end
x = X.new
puts "Object data: #{x}"
0
Although HTML is not case sensitive, tags are usually written small case.
Second property should be font-weight
p{
transform: rotate(180deg)
}
p::first-letter{
color:red;
font-weight: bold;
}
0
Thanks