如何使图标/图像用作提交按钮(输入)?我的意思是我尝试了输入类型“图像”,但后来我在信封周围有白色背景,我想成为我的提交按钮。我更喜欢使用'✉'代码,但我不能摆脱它周围的背景。
我现在正在使用这样的代码,但它确实不是我想要的
<input name="send" value="✉" type="submit">
答案 0 :(得分:0)
您可以<input type="image">
#include <stdio.h>
int check_for_EOF() {
if (feof(stdin)) return 1;
int c = getc(stdin);
if (c == EOF) return 1;
ungetc(c, stdin);
}
int main() {
printf("Start typing:\n");
while (!check_for_EOF()) {
int bytes_typed = 0;
while (getchar() != '\n') bytes_typed++;
printf("You typed a line of %d bytes\n", bytes_typed);
}
printf("You typed EOF\n");
}
,更多信息
答案 1 :(得分:0)
您可以使用with类来应用背景图像
<BrowserRouter>
<Switch>
<Route exact path="/" component={HomeComponent} />
<Route exact path="/about" component={About}/>
<Route path="/about/team" component={TeamComponent}/>
<Route path="/category/:id" render={ ({ match }) => <div>Category: { match.params.id }</div> }/>
<Route path="/:slug" component={ ({ match }) => <h4>Slug: { match.params.slug }</h4> }/>
</Switch>
</BrowserRouter>
使用CSS ..
<button class="mybgImage"></button>