How to demonstrate my SASS skill? [closed] - css

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 5 years ago.
Improve this question
I have just self taught SASS by studying the SASS documentation: http://sass-lang.com/documentation/file.SASS_REFERENCE.html. What practical work can I do now that can best demonstrate my SASS skill and experience to employers?
I am looking for a front-end or a web developer role around 70-80K. My current skill set is HTML5, CSS3, Bootstrap, JavaScript, jQuery, PHP, MySQL, WordPress, React, Angular, SVN and Photoshop. Thank you. :)

I think if you understand the basics listed in the Sass website you are pretty much ready to go :)
http://sass-lang.com/guide
To demonstrate your knowledge do some demos or websites using Sass and show the code to an employer.

Related

Best practice to style react components? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 months ago.
Improve this question
I started working on an app made with tsx. This app has a general stylesheet for everything and some of the components have inline styling. Personally it feels disorganized.
I'm a biginner at css so I don't know what would be the best way to aproach this. I thought of two options: do all inline styling or make a stylesheet for each component. The first feels wrong ,in the second I'm gonna end up with 30 stylesheets and the overrides are going to mess up everithing.
The styled-components library is universally popular and you'll find plenty of support from the large community that uses it. With this you can write your css inside your component files. I'd also recommend getting the VS-Code extension for it so that you get css intellisense.

Is it worth using Flexbox if I have to support IE9? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 6 years ago.
Improve this question
I am working on a new project which involves building a chat window. Normally, I would have no hesitation in using Flexbox for this project, however, a requirement of this project is that I support IE9.
I know that using tools like Modernizr can provide a fallback, but if I need to support this anyways is there much advantage of using this method?
No. Not worth it. You'll wind up doing everything twice to get the fallback support, so spend your effort doing it once, fully compatible with the oldest browser you need to support.

Prevent copying Site Templates [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
How can Prevent copying my Site templates such as CSS & Javascript code or anyone fails to copy my website.
please help me.
I tried many ways but it was inconclusive.I'm sorry that asked this question.There is no way for this problem.I realized my mistake.
Sorry to say but all client-side code can be copied.
Your best bet is to stop publishing your site online.
Obfuscate
However, there are tools that help you obfuscate code. Here's one.
http://www.javascriptobfuscator.com/
http://htmlobfuscator.com/
Minify
On the other hand, most techniques employ that minify your code.
Here's two links:
http://cssminifier.com/
http://www.willpeavy.com/minifier/

Which is more suitable for professional design Bootstrap or Foundation? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
Hi i am going to develop a professional website.
I wanted to know which css will be more suitable for designing purposes?
Bootstrap 3 or Foundation 5?
or is there any other css i can go for?
This depends on taste and use case. Bootstrap is able to provide good results verry fast. But you are bound to many parts of it. Foundation is able to give you a more general Framework. From what I know, both systems have problems with older internet explorers. But foundation maybe has some more Problems with that. Most companys I know, use Bootstrap. However, everyone has to adjust and customize the files for their fitting.
I use Boostrap because it works perfectly for my CMS (typo3).

What are the challenges of making a CSS framework? [closed]

Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 9 years ago.
Improve this question
I am studying some popular CSS frameworks like Bootstrap, Foundation etc. I pointed some out, and I'm willing to make my own CSS framework whether for my own projects or in later for free distribution. As I'm a front-end developer in most of the cases, I'm a bit slow with JavaScripts. So in my study I found some challenges in making a new CSS framework, like:
JavaScripts integration for a nice, clean and easy-to-use front-end
Common and general values for a fixed layout
The menu CSS
And also I found some features a bit challenging, like:
Responsive grids (I loved it)
But is there any checklist that should be fulfilled in CSS framework?
Maybe you can try yoeman to help you create your own css framework quickly and easily.
Here is the link on the details of Yoeman generator:
https://github.com/yeoman/yeoman/wiki/Generators

Resources