Jump to content

shaili_shah

Members
  • Posts

    111
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by shaili_shah

  1. choose link rather than @import rule you can refer this for more information: https://stackoverflow.com/questions/1022695/difference-between-import-and-link-in-css
  2. Hello, You can use the convert() function in SQL to convert your string date into date time object. E.x. SELECT CONVERT(varchar, 'yourstringcolumn', 113);
  3. link your css file using below: <link rel="stylesheet" href="yourCssFile.css">
  4. it is easy to use w3.css but bootstrap is more popular and widely used.you can refer below link for more information about which framework is better.https://www.quora.com/Which-framework-is-better-W3-CSS-or-Bootstrap
  5. Using media queries are a popular technique for delivering a tailored style sheet (responsive web design) to desktops, laptops, tablets, and mobile phones. You can also use media queries to specify that certain styles are only for printed documents or for screen readers (mediatype: print, screen, or speech). In addition to media types, there are also media features. Media features provide more specific details to media queries, by allowing to test for a specific feature of the user agent or display device. For example, you can apply styles to only those screens that are greater, or smaller, than a certain width. for more information refer below link: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp
  6. css: p { font-size: 30px !important; } #thing { font-size: 20px; } html: <p id="thing">fontsize</p> The paragraph is will be 30px in font-size, even though the ID selector has higher specificity. The !importantrule overrides that particular property.
  7. for example change default style of navbar-btn, simply write .navbar-btn{color:blue;background-color:black}
  8. Refer below link: https://css-tricks.com/almanac/selectors/f/first-letter/
  9. refer below link: https://www.quora.com/Can-we-use-w3-CSS-and-bootstrap-together-to-build-the-front-end-of-my-website
  10. it is easy to use w3.css but bootstrap is more popular and widely used. you can refer below link for more information about which framework is better. https://www.quora.com/Which-framework-is-better-W3-CSS-or-Bootstrap
×
×
  • Create New...