Jump to content

shaili_shah

Members
  • Posts

    111
  • Joined

  • Last visited

  • Days Won

    2

shaili_shah last won the day on March 5 2021

shaili_shah had the most liked content!

1 Follower

Contact Methods

  • Website URL
    https://www.ifourtechnolab.com

Profile Information

  • Location
    Ahmedabad

Recent Profile Visitors

3,423 profile views

shaili_shah's Achievements

Member

Member (2/7)

4

Reputation

  1. Hello, You can use a striped table to style even and odd rows. After giving this property, you can hide the border of the table so that it won't look like a table, but like a regular element. Here is a reference link for further research. https://css-tricks.com/snippets/css/css3-zebra-striping-a-table/ I hope, this clarifies your doubts. Have a nice day.
  2. "Width" and "Height" are used for the width and height of the image. Whereas "alt" is used when there is no image displayed on the page. Means if there is a wrong source of image is given then text in the alt will display.
  3. It's working in notepad. <html> <head> </head> <body> <img src="http://qnimate.com/wp-content/uploads/2014/03/images2.jpg"/> </body> </html> If there is still problem then use the latest version of notepad. Hope it helps.
  4. Hi. For that you have to take image and place this text on it. I have written the demo code you can check here : https://jsfiddle.net/0f5bqh8s/ Hope it will help you.
  5. You can use the bootstrap classes for that. Refer this code : https://jsfiddle.net/x2hwjz36/ Hope it helps you.
  6. Okay, so you wanna set the background image for footer. Am I right? And yeah, Do send screenshot that describes what you want and code also.
  7. css media query is best for this. I've written the code in fiddle you can check here : https://jsfiddle.net/rgdwsyan/2/ When you reduce the screen size to the 766px you can see the div size will be 90%. Hope this is your answer.
  8. Use any one below given codes: <p style="background-color:DarkBlue">I am a boy.</p> OR <p style="background-color:#00008B">I am a boy.</p> OR <p style="background-color:000139">I am a boy.</p> For more color code see this : http://www.htmlcodes.ws/color/html-color-code-generator.cfm?colorName=DarkBlue You can use rgb color tag also : https://www.w3schools.com/html/html_colors_rgb.asp Hope this helps you.
  9. Use overflow-y : scroll property. May this could help you.
  10. Hi. Didi you use the media query for that? If yes then use below code for less than 1000px browser width: .lang { float: right; margin: -79% 4px 55px 0; } Hope it helps.
  11. Hi. We can use the keycode for it. Ex:- $(document).keydown(function(e){ if(e.keyCode === 37){ plusSlides(-1) } //for left arrow if(e.keyCode === 39){ plusSlides(1) } //for right arrow }); Hope it helps.
  12. We can use media query for that. Ex:- @media only screen and (min-width: 768px) { //your code } See this: https://www.w3schools.com/css/css_rwd_mediaqueries.asp Hope it helps.
  13. Hi, Good Morning I have done the code in fiddle just check it out : https://jsfiddle.net/Lb0cy5ak/ In the Date() method we have assign the date and time from out input tag and it will display difference in time. Hope it helps.
×
×
  • Create New...